We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f0f64f commit a379461Copy full SHA for a379461
1 file changed
live11/test116/문제2/박희경.py
@@ -0,0 +1,10 @@
1
+import sys
2
+
3
+input = sys.stdin.readline
4
5
+n, t = map(int, input().split())
6
+hold = []
7
+for _ in range(n):
8
+ hold.append(list(map(int, input().split())))
9
10
+hold.sort() # [[0, 2], [1, 2], [3, 2], [4, 1], [6, 3]]
0 commit comments