컴공생의 다이어리
[파이썬, Python] 백준 5635번 : 생일 본문
백준 5635번 : 생일
내 코드
import sys
n = int(input())
info = []
for _ in range(n):
info.append(list(map(str,sys.stdin.readline().strip().split())))
info.sort(key = lambda x : (int(x[-1]),int(x[-2]),int(x[-3])))
print(info[-1][0])
print(info[0][0])
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 5585번 : 거스름돈 (0) | 2021.08.24 |
---|---|
[파이썬, Python] 백준 11399번 : ATM (0) | 2021.08.22 |
[파이썬, Python] 백준 11650번 : 좌표 정렬하기 (0) | 2021.08.19 |
[파이썬, Python] 백준 1181번 : 단어 정렬 (0) | 2021.08.08 |
[파이썬, Python] 백준 1011번 : Fly me to the Alpha Centauri (0) | 2021.06.27 |
Comments