#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; vector<int> tab(n); for(int i = 0; i < n; ++i) cin >> tab[i]; int a; vector<int> t; int mx = 0; for(int pocz = 0; pocz < n; ++pocz){ for(int kon = pocz; kon < n; ++kon){ a = 0; for(int i = pocz; i <= kon; ++i) a += tab[i]; t.emplace_back(a); mx = max(mx,a); } } n = t.size(); int wynik = 0; for(int i = 0; i < n; ++i){ for(int j = i + 1; j < n; ++j){ for(int k = j + 1; k < n; ++k){ a = t[i] + t[j] + t[k]; if(!a) ++wynik; } } } cout << wynik << "\n"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | #include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; vector<int> tab(n); for(int i = 0; i < n; ++i) cin >> tab[i]; int a; vector<int> t; int mx = 0; for(int pocz = 0; pocz < n; ++pocz){ for(int kon = pocz; kon < n; ++kon){ a = 0; for(int i = pocz; i <= kon; ++i) a += tab[i]; t.emplace_back(a); mx = max(mx,a); } } n = t.size(); int wynik = 0; for(int i = 0; i < n; ++i){ for(int j = i + 1; j < n; ++j){ for(int k = j + 1; k < n; ++k){ a = t[i] + t[j] + t[k]; if(!a) ++wynik; } } } cout << wynik << "\n"; return 0; } |