본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#369 백준 파이썬 [2535] 아시아 정보올림피아드

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])