Cometin'

BOJ-2460 - Python

2020-08-13 at Algorithm category

위 문제와 동일하며 다른 점은 10번 반복을 한다는 점. 반복문을 10번 수행하게 바꾸어서 풀었다.

t, ans = 0, 0
for _ in range(10):
    i, j = map(int, input().split())
    t = t + j - i
    ans = max(ans, t)

print(ans)

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.