728x90
반응형
단순 구현 문제이다.
n = int(input()); m = int(input())
max_p = 0
for _ in range(n):
a, b = map(int, input().split())
m = m+a-b
if m < 0:
max_p = 0
break
if max_p < m:
max_p = m
print(max_p)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5618번 공약수(python) (0) | 2021.02.14 |
---|---|
백준 알고리즘 5613번 계산기 프로그램(python) (0) | 2021.02.14 |
백준 알고리즘 5565번 영수증(python) (0) | 2021.02.14 |
백준 알고리즘 5523번 경기 결과(python) (0) | 2021.02.14 |
백준 알고리즘 5361번 전투 드로이드 가격(python) (0) | 2021.02.14 |