简单枚举
#include <iostream>
using namespace std;
int main()
{
int n, t;
cin >> n >> t;
int res = 0;
while(n --)
{
int x;
cin >> x;
t -= x;
if(t >= 0) res ++;
else break;
}
cout << res << endl;
return 0;
}