728x90
import sys
T = int(input())
result = []
for i in range(T):
N = int(input())
people = []
for i in range(N):
people.append(list(map(int, sys.stdin.readline().split())))
people.sort()
first = people[0][1]
result = 1
for i in range(1,N):
if people[i][1] < first:
result += 1
first = people[i][1]
print(result)
# 시간 초과가 계속 나서 질문을 봤더니 sys 모듈을 이용해서 input을 하라고 했다..
반응형
'전.py' 카테고리의 다른 글
백준 10699 오늘 날짜 (0) | 2020.12.23 |
---|---|
백준 2163 초콜릿 자르기 (0) | 2020.12.23 |
백준 1138 한 줄로 서기 (0) | 2020.12.22 |
백준 1065 한수 (0) | 2020.12.22 |
전화번호부(딕셔너리) (0) | 2020.12.21 |