https://www.acmicpc.net/problem/11557
#Solution
연세대의 편향된 예시다.
T = int(input())
for _ in range(T):
N = int(input())
alcohol = []
for _ in range(N):
S, L = map(str, input().split())
alcohol.append([S,int(L)])
alcohol = sorted(alcohol, key = lambda x: x[1])
print(alcohol[-1][0])
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#192 백준 파이썬 [2752] 세수정렬 (0) | 2019.11.06 |
---|---|
#191 백준 파이썬 [10870] 피보나치 수 5 (0) | 2019.11.06 |
#189 백준 파이썬 [9506] 약수들의 합 (0) | 2019.11.06 |
#188 백준 파이썬 [10214] Baseball - 고연전 (0) | 2019.11.05 |
#187 백준 파이썬 [10103] 주사위 게임 (0) | 2019.11.05 |