Skip to content

Commit ca23f36

Browse files
committed
[#15] Add 신입 사원
1 parent 027eeb3 commit ca23f36

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

1946.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# 신입 사원
2+
import sys
3+
input = sys.stdin.readline
4+
5+
T = int(input())
6+
7+
for _ in range(T):
8+
tests = []
9+
count = 1
10+
11+
N = int(input())
12+
for _ in range(N):
13+
a, b = map(int, input().split())
14+
tests.append((a, b))
15+
16+
tests.sort(key=lambda x: x[0])
17+
cutLineRank = tests[0]
18+
for scores in tests:
19+
if cutLineRank[1] > scores[1]:
20+
cutLineRank = scores
21+
count += 1
22+
23+
print(count)

0 commit comments

Comments
 (0)