본문 바로가기

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

#190 백준 파이썬 [11557] Yangjojang of The Year

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