반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
정렬해서 순위를 결정하는 문제입니다.
3. 코드
import sys
input = sys.stdin.readline
N = int(input())
lst = [list(map(int, input().split())) for _ in range(N)]
sorted_lst = sorted(lst, key=lambda x:(-x[0], x[1], x[2]))
print(lst.index(sorted_lst[0])+1)
key lambda를 쓰면 쉽게 계산할 수 있습니다.
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 23080 스키테일 암호 - 파이썬(Python) (0) | 2023.04.05 |
---|---|
[구현/수학] 백준 10205 헤라클레스와 히드라 - 파이썬(Python) (0) | 2023.04.04 |
[구현/수학] 백준 15734 명장 남정훈 - 파이썬(Python) (0) | 2023.04.02 |
[구현/수학] 백준 15351 인생 점수 - 파이썬(Python) (0) | 2023.04.01 |
[구현/수학] 백준 23348 스트릿 코딩 파이터 - 파이썬(Python) (0) | 2023.03.31 |
댓글