import sys
input = sys.stdin.readline
N = int(input())
students :list = []
for _ in range(N):
weight, height = list(map(int, input().split()))
students.append((weight, height))
for i in students:
rank = 1
for j in students:
if i[0] < j[0] and i[1] < j[1]:
rank +=1
print (rank, end = " ")
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 7576번 토마토 (파이썬) (0) | 2022.06.16 |
---|---|
[백준] 7569번 토마토 (파이썬) (0) | 2022.06.16 |
[백준] 7287번 등록 (파이썬) (0) | 2022.06.16 |
[백준] 6603번 로또 (파이썬) (0) | 2022.06.16 |
[백준] 5622번 다이얼 (파이썬) (0) | 2022.06.16 |