본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 7281번 Internetas

by 현장 2024. 3. 7.

-Code

res, last_time = 0, 0

for _ in range(int(input())):
    t, m = map(int, input().split())

    if m == 1:
        res = max(res, t - last_time)
        last_time = t

print(res)