-Code
n, k = map(int, input().split())
total, max_stand = 0, 0
for _ in range(n):
a, b = map(int, input().split())
total += a - b
if total > k:
max_stand = max(max_stand, total - k)
print(max_stand)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31450번 Everyone is a winner (0) | 2024.03.01 |
---|---|
[백준/파이썬] 30821번 별자리가 될 수 있다면 (0) | 2024.02.29 |
[백준/파이썬] 8826번 Spacer (0) | 2024.02.27 |
[백준/파이썬] 21200번 Forced Choice (0) | 2024.02.26 |
[백준/파이썬] 30310번 Finding Forks (0) | 2024.02.25 |