본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 16019번 Are we there yet?

by 현장 2023. 5. 24.

-Code

d = [0] + list(map(int, input().split()))
for i in range(1, 5):
    d[i] = d[i] + d[i - 1]

for i in range(5):
    res = []
    for j in range(5):
        res.append(abs(d[i] - d[j]))
    print(*res)