Skip to content

Commit 3bc1018

Browse files
author
hangyeol
committed
116차 2번 문제풀이
1 parent 3437a38 commit 3bc1018

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import sys
2+
3+
def main():
4+
input = sys.stdin.readline
5+
n, T = map(int, input().split())
6+
7+
stones = set()
8+
9+
for _ in range(n):
10+
x, y = map(int, input().split())
11+
stones.add((x, y))
12+
13+
14+
15+
if __name__ == '__main__':
16+
main()

0 commit comments

Comments
 (0)