[백준]B3-2455

py_code·2020년 12월 24일
0

백준-브론즈3

목록 보기
21/38
post-custom-banner

# 역마다의 진행 상황을 상태 리스트로 따로 담기
L = [list(map(int, input().split())) for _ in range(4)]
p = []
for i in range(4):
    p.insert(i, L[i][1]-L[i][0])
p_state = [sum(p[:i+1]) for i in range(4)]
print(max(p_state))
profile
개발자를 꿈꿉니다.

0개의 댓글