[파이썬/Python] 백준 알고리즘 및 풀이 11098번 첼시를 도와줘!

제로코딩

·

2022. 8. 9. 16:47

반응형

 [파이썬/Python] 백준 알고리즘 및 풀이 11098번 첼시를 도와줘! 

 

 

 

⚡️ 백준 문제풀이

 

 

📌 백준 11098번 첼시를 도와줘! 

 

https://www.acmicpc.net/problem/11098

 

11098번: 첼시를 도와줘!

구단이 성적을 내지 못한다면 답은 새 선수 영입뿐이다. 이것은 오늘날 유럽 리그에서 가장 흔한 전략이고, 노르웨이의 로젠버그 팀은 이러한 전략이 성공한 대표적 예시다. 그들은 많은 스카

www.acmicpc.net

 

 

 

 

[Python Code]

 

# 11098 첼시를 도와줘!
case = int(input())
for _ in range(case):
    ans = 0
    a = int(input())
    tempList = dict()
    for i in range(a):
        a, b = map(str, input().split())
        tempList[a] = b
    for i in tempList.keys():
        if ans < int(i):
            ans = int(i)
    print(tempList[str(ans)])

 

 

 

 

반응형