Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int n;
- cin >> n;
- int niza[n];
- for(int i = 0; i < n; i++) {
- cin >> niza[i];
- }
- int zbir = 0;
- int brojac = 0;
- for(int i = 0; i < n; i++) {
- if(zbir + niza[i] + 1 <= n) {
- zbir += niza[i] + 1;
- brojac += 1;
- }
- }
- cout << brojac << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement