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

[백준/파이썬] 31831번 과민성 대장 증후군

by 현장 2024. 5. 12.

-Code

n, m = map(int, input().split())
stress = list(map(int, input().split()))
now_stress, res = 0, 0

for el in stress:
    now_stress += el

    if now_stress < 0:
        now_stress = 0

    if now_stress >= m:
        res += 1
print(res)