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
35
36
37
38
39
40
#include <bits/stdc++.h>

using namespace std;
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    long long int n,a,l=0,b,mx=-200000,mn=200000;
    cin >> n;
    vector<long long int>ulubionyciag(n);
    vector<long long int>bardzoulubionyciag((n * (n + 1)) / 2);
    for (int i = 0; i < n; i++){
        cin >> ulubionyciag[i];
        mx = max(ulubionyciag[i], mx);
        mn = min(ulubionyciag[i], mn);
    }
    for (int i = 0; i < ulubionyciag.size(); i++){
        a = 0;
        for (int j = i; j < ulubionyciag.size(); j++){
            a += ulubionyciag[j];
            bardzoulubionyciag[l] = a;
            l++;
        }
    }
    long long int ilezer=0,z;
    sort(bardzoulubionyciag.begin(), bardzoulubionyciag.end());
    for (int i = 0; i < bardzoulubionyciag.size(); i++){
        for (int j = i + 1; j < bardzoulubionyciag.size(); j++){
            z = 0 - bardzoulubionyciag[i] - bardzoulubionyciag[j];
            if(z <= mx or z >= mn){
                b = upper_bound(bardzoulubionyciag .begin() + j + 1, bardzoulubionyciag.end(), z) - bardzoulubionyciag.begin();
                a = lower_bound(bardzoulubionyciag .begin() + j + 1, bardzoulubionyciag.end(), z) - bardzoulubionyciag.begin();
                ilezer += (b - a);
            }
        }
    }
    cout << ilezer;
    return 0;
}