[백준] #2455 지능형 기차 python
2023. 1. 21. 06:00
https://www.acmicpc.net/problem/2455
📕 설명 📕
가장 최댓값일 때를 저장하여 출력한다.
🧑🏻💻 나의 풀이 🧑🏻💻
max_ = -1
tmp = 0
while True:
try:
inp, outp = map(int, input().split())
tmp += outp - inp
if tmp > max_:
max_ = tmp
except:
break
print(max_)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2501 약수 구하기 python (0) | 2023.01.23 |
---|---|
[백준] #2476 주사위 게임 python (0) | 2023.01.22 |
[백준] #2446 별 찍기 - 9 python (0) | 2023.01.20 |
[백준] #2442 별 찍기 - 5 python (0) | 2023.01.19 |
[백준] #2441 별 찍기 - 4 python (0) | 2023.01.18 |