7568: 덩치 - Python

beaver.zip·2024년 12월 11일
0

[알고리즘] 백준

목록 보기
27/45

문제

https://www.acmicpc.net/problem/7568

풀이 (참고)

import sys
input = sys.stdin.readline
arr = [list(map(int, input().split())) for _ in range(int(input()))]

for x, y in arr:
    cnt = 1
    for p, q in arr:
        if x < p and y < q:
            cnt += 1
    print(cnt, end=" ")
  • 스스로 풀지 못했다.
  • 이전 문제들에서 정렬을 할 때 sort()를 많이 사용했기에 이 문제에서도 sort()를 사용하려고 했는데, 잘 안됐다.
profile
NLP 일짱이 되겠다.

0개의 댓글