-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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31821번 학식 사주기 (0) | 2024.05.14 |
---|---|
[백준/파이썬] 29283번 Алекс и стейк (0) | 2024.05.13 |
[백준/파이썬] 29267번 Случай с игрой (0) | 2024.05.11 |
[백준/파이썬] 31789번 모험의 시작 (0) | 2024.05.10 |
[백준/파이썬] 11258번 Thai Lottery Checking (0) | 2024.05.09 |