지나가던 개발자
[Python] 백준 7568번(덩치) 문제 풀이 본문
n = int(input())
people = []
for i in range(n):
people.append(list(map(int, input().split())))
for i in people:
ranking = 1
for j in people:
if i[0] < j[0] and i[1] < j[1]:
ranking += 1
print(ranking, end=" ")
'PS > Python' 카테고리의 다른 글
[Python] 백준 11723번(집합) 문제 풀이 (0) | 2022.12.02 |
---|---|
[Python] 백준 17478번(재귀함수가 뭔가요?) 문제 풀이 (0) | 2022.12.01 |
[Python] 백준 14382번(숫자세는 양 (Large)) 문제 풀이 (0) | 2022.11.28 |
[Python] 백준 24039번(2021은 무엇이 특별할까?) 문제 풀이 (0) | 2022.11.27 |
[Python] 백준 21920번(서로소 평균) 문제 풀이 (0) | 2022.11.26 |
Comments