본문 바로가기
백준 알고리즘/시뮬레이션

백준 2455 파이썬

by paysmile 2018. 11. 6.


a_1, b_1 = map(int, input().split())
a_2, b_2 =map(int, input().split())
a_3,b_3 = map(int, input().split())
a_4,b_4 =map(int, input().split())

num = []
num.append(b_1)
num.append(num[0]- a_2 + b_2)
num.append(num[1] - a_3 + b_3)
num.append(num[2] - a_4 + b_4)
print(max(num))



'백준 알고리즘 > 시뮬레이션' 카테고리의 다른 글

백준 1057 파이썬  (0) 2018.11.06
백준 1094 파이썬  (0) 2018.11.06
백준 1021번 파이썬  (0) 2018.09.18
백준 8958번 파이썬  (0) 2018.09.18
백준 1966번 파이썬  (0) 2018.09.17