-Code
res = int(input())
while True:
try:
d = int(input())
if d >= res:
break
res += d
except EOFError:
break
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 26594번 ZOAC 5 (0) | 2024.11.05 |
---|---|
[백준/파이썬] 32515번 BB84 (0) | 2024.11.04 |
[백준/파이썬] 32587번 Dragged-out Duel (0) | 2024.11.02 |
[백준/파이썬] 32604번 Jumbled Scoreboards (0) | 2024.11.01 |
[백준/파이썬] 26336번 Are We Stopping Again? (0) | 2024.10.31 |