-Code
n, k, t0 = map(int, input().split())
d_list = list(map(int, input().split()))
t, res = t0, 0
for d in d_list:
if t < k:
t = t + d + abs(t - k)
elif t > k:
t = t + d - abs(t - k)
else:
t = t + d
res += abs(t - k)
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32369번 양파 실험 (0) | 2024.09.29 |
---|---|
[백준/파이썬] 14683번 Exactly Electrical (0) | 2024.09.28 |
[백준/파이썬] 32246번 빙고 막기 (1) | 2024.09.26 |
[백준/파이썬] 3533번 Explicit Formula (0) | 2024.09.25 |
[백준/파이썬] 32342번 와우와 쿼리 (0) | 2024.09.24 |