baekjoon 20260228
This commit is contained in:
parent
9ed93293a4
commit
701f8df09d
6
code_study/Baekjoon/python/2455.py
Normal file
6
code_study/Baekjoon/python/2455.py
Normal file
@ -0,0 +1,6 @@
|
||||
a, b = 0, 0
|
||||
for _ in range(4) :
|
||||
x, y = map(int, input().split())
|
||||
a += (y-x)
|
||||
b = max(b, a)
|
||||
print(b)
|
||||
Loading…
x
Reference in New Issue
Block a user