728x90
풀이
n,m = map(int, input().split())
a = list(map(int, input().split()))
# 투 포인터
lt=0
rt=1
tot=a[0]
cnt=0
while True:
if tot<m:
if rt<n:
tot+=a[rt]
rt+=1
else: # 작은데 더이상 더할 것이 없음
break
elif tot==m:
cnt+=1
# 계속 진행해야 하기 때문에
tot-=a[lt]
lt+=1
else:
tot-=a[lt]
lt+=1
print(cnt)
728x90