Advertisement
Josif_tepe

Untitled

Mar 9th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int n;
  8.     cin>>n;
  9.     int niza[n];
  10.     for(int i=0;i<n;i++)
  11.     {
  12.         cin>>niza[i];
  13.     }
  14.  
  15.     int broj=0;
  16.     for(int i=0;i<n;i++)
  17.     {
  18.         for(int j=i;j<n;j++)
  19.         {
  20.             if(niza[j] == 0) {
  21.                 broj += n - j;
  22.             }
  23.         }
  24.     }
  25.     cout << broj << endl;
  26.     return 0;
  27. }
  28. // i4, 5, j0, 1, 2
  29. // n - j
  30. // 5 - 2 = 3
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement