https://www.acmicpc.net/problem/2535
PYTHON CODE
N = int(input())
students = sorted([list(map(int, input().split())) for _ in range(N)], key = lambda x: -x[2])
print(*students[0][:2])
print(*students[1][:2])
if students[0][0] == students[1][0]: #같을 경우
print(*students[3][:2])
else:
print(*students[2][:2])
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#371 백준 파이썬 [9625] BABBA - 피보나치 수열 (0) | 2020.01.14 |
---|---|
#370 백준 파이썬 [10830] 행렬 제곱 - 분할 정복 (0) | 2020.01.14 |
#368 백준 파이썬 [5576] 콘테스트 (0) | 2020.01.14 |
#367 백준 파이썬 [11931] 수 정렬하기 4 (0) | 2020.01.13 |
#366 백준 파이썬 [10179] 쿠폰 (0) | 2020.01.13 |