[백준] #7568 덩치 python
2022. 12. 28. 19:35
https://www.acmicpc.net/problem/7568
📕 설명 📕
하나씩 비교하는 brute-force로 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
tmp_list = []
result_list = []
for i in range(N):
kg, cm = map(int, input().split())
tmp_list.append([kg, cm])
for i in tmp_list:
cnt = 0
for j in tmp_list:
if i == j:
continue
if j[0] > i[0] and j[1] > i[1]:
cnt += 1
result_list.append(cnt+1)
print(*result_list)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1018 체스판 다시 칠하기 python (0) | 2022.12.30 |
---|---|
[백준] #1436 영화감독 숌 python (0) | 2022.12.30 |
[백준] #2231 분해합 python (0) | 2022.12.28 |
[백준] #2798 블랙잭 python (0) | 2022.12.28 |
[백준] #11729 하노이 탑 이동 순서 python (0) | 2022.12.28 |