반응형
📂 백준 7568 파이썬 (덩치)
n = int(input())
body = []
for _ in range(n):
x, y = map(int, input().split())
body.append([x, y])
score = [0]*len(body)
for i in range(len(body)):
for j in range(len(body)):
if body[i][0] > body[j][0] and body[i][1] > body[j][1]:
score[j] += 1
for x in score:
print(x+1, end=' ')
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
파이썬(Python) 백준 1260 DFS와 BFS (0) | 2023.04.30 |
---|---|
파이썬(Python) 백준 2839 설탕 배달 (0) | 2023.04.22 |
백준 2231 파이썬 / 분해합 of 브루트 포스 (0) | 2020.09.14 |
백준 1316 파이썬 / 그룹 단어 체커 (0) | 2020.09.13 |
파이썬 백준 2941번:크로아티아 알파벳 (0) | 2020.09.12 |