-Code
for _ in range(int(input())):
res, now = 0, 0
for _ in range(int(input())):
p1, p2 = map(int, input().split())
now = now - p1 + p2
res = max(res, now)
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 23276번 Locust Locus (0) | 2024.08.10 |
---|---|
[백준/파이썬] 11434번 Ampelmännchen (0) | 2024.08.09 |
[백준/파이썬] 9253번 스페셜 저지 (0) | 2024.08.07 |
[백준/파이썬] 29614번 학점계산프로그램 (0) | 2024.08.06 |
[백준/파이썬] 12780번 원피스 (0) | 2024.08.05 |