본문 바로가기
파이썬/백준

5635번: 생일

by L_SU 2022. 6. 6.
# 생일
n = int(input(""))
at_book = []

for i in range(n):
    human = input().split()
    human[1:] = (list(map(int, human[1:])))
    at_book.append(human)

at_book.sort(key=lambda x: (x[3], x[2], x[1]))
print(at_book[-1][0])
print(at_book[0][0])

'파이썬 > 백준' 카테고리의 다른 글

10833번: 사과  (0) 2022.06.06
10984번: 내 학점을 구해줘  (0) 2022.06.06
5565번: 영수증  (0) 2022.06.06
11098번: 첼시를 도와줘!  (0) 2022.06.06
2609번: 최대 공약수와 최소 공배수  (0) 2022.06.06