Advertisement
Josif_tepe

Untitled

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