-code
res, max_pay = "", 0
for _ in range(int(input())):
pay, name, country = input().split()
if max_pay < int(pay) and country == "Russia":
max_pay = int(pay)
res = name
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30802번 웰컴 키트 (0) | 2024.03.29 |
---|---|
[백준/파이썬] 31617번 差 (Difference) (0) | 2024.03.28 |
[백준/파이썬] 31656번 Sticky Keys (0) | 2024.03.26 |
[백준/파이썬] 31636번 三連続 (Three Consecutive) (0) | 2024.03.25 |
[백준/파이썬] 31616번 揃った文字 (Matched Letters) (0) | 2024.03.24 |