Advertisement
Josif_tepe

Untitled

Feb 17th, 2021
108
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.     int niza[n];
  9.     for(int i = 0; i < n; i++) {
  10.         cin >> niza[i];
  11.     }
  12.     int zbir = 0;
  13.     for(int i = 0; i < n; i++) {
  14.         zbir += (niza[i] + 1);
  15.         if(zbir >= n) {
  16.             cout << i + 1 << endl;
  17.             break;
  18.         }
  19.     }
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement