티스토리 뷰
https://www.acmicpc.net/problem/7568
import sys
input = sys.stdin.readline
N = int(input())
people = [list(map(int, input().split())) for _ in range(N)]
result = []
for w, h in people:
cnt = 1
for a, b in people:
if (w < a) and (h < b):
cnt += 1
result.append(cnt)
for i in range(N):
print(result[i], end = ' ')
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1436 : 영화감독 숌 - Python (0) | 2020.04.14 |
---|---|
[백준] 1920 : 수 찾기 - Python (0) | 2020.04.14 |
[백준] 10250 : ACM 호텔 - Python (0) | 2020.04.07 |
[백준] 2839 : 설탕 배달 - Python (0) | 2020.04.07 |
[백준] 11729 : 하노이 탑 이동 순서 - Python (0) | 2020.04.07 |