Posts [알고리즘] 백준 2455 - 지능형 기차
Post
Cancel

[알고리즘] 백준 2455 - 지능형 기차


문제

2455 - 지능형 기차


접근

한 줄씩 입력 받는 동시에 현재 기차에 남은 인원을 연산한다.
그리고 최대값을 구한다.


코드

  • 파이썬 코드
1
2
3
4
5
6
7
ans = 0
nowCnt = 0
for _ in range(4):
    outCnt, inCnt = map(int, input().split())
    nowCnt = nowCnt + inCnt - outCnt
    ans = max(ans, nowCnt)
print(ans)


This post is licensed under CC BY 4.0 by the author.