Advertisement
Josif_tepe

Untitled

Jun 21st, 2024
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.   int n;
  7.   cin >> n;
  8.  
  9.   int niza[n];
  10.   for(int i = 0; i < n; i++) {
  11.     cin >> niza[i];
  12.   }
  13.  
  14.   int zbir = 0;
  15.   int brojac = 0;
  16.  
  17.   for(int i = 0; i < n; i++) {
  18.     if(zbir + niza[i] + 1 <= n) {
  19.       zbir += niza[i] + 1;
  20.       brojac += 1;
  21.     }
  22.   }
  23.   cout << brojac << endl;
  24.  
  25.   return 0;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement