0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 13:25:25 +00:00
OI-codes/Luogu/problem/P1181/P1181.cpp
2021-01-02 15:30:52 +08:00

21 lines
338 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m, sum = 0, ans = 1, t;
cin >> n >> m;
for (int i = 0; i < n; i++) {
cin >> t;
if (sum + t > m) {
ans++;
sum = t;
}
else {
sum += t;
}
}
cout << ans << endl;
return 0;
}