-Code
max_s, f, tf, sf = 0, 0, 0, 0
for i in range(1, int(input()) + 1):
t, s = map(int, input().split())
if s > max_s:
max_s = s
f = i
tf = t
sf = s
if sf == 0:
print(0)
else:
print(tf + (f - 1) * 20)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 10501번 Ragged Right (0) | 2024.08.22 |
---|---|
[백준/파이썬] 21614번 Secret Instructions (0) | 2024.08.21 |
[백준/파이썬] 24408번 Mult! (0) | 2024.08.19 |
[백준/파이썬] 17838번 커맨드 (0) | 2024.08.18 |
[백준/파이썬] 15779번 Zigzag (0) | 2024.08.17 |