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
41
42
43
44
45
46
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

int a[505];
int ps[505];
int buc[130130];
unordered_map<int, ll> ahead;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int n;
    cin >> n;

    for(int i = 1; i <= n; i++) {
        cin >> a[i];
        ps[i] = ps[i - 1] + a[i];
    }

    int buc_idx = 0;
    for(int i = 1; i <= n; i++) {
        for(int j = i; j <= n; j++) {
            buc[buc_idx++] = ps[j] - ps[i - 1];
        }
    }

    ll r = 0;
    for(int i = 0; i < buc_idx; i++) {
        for(int j = i + 2; j < buc_idx; j++) {
            ahead[buc[j]]++;
        }

        for(int j = i + 1; j < buc_idx - 1; j++) {
            r += ahead[-(buc[i] + buc[j])];
            ahead[buc[j + 1]]--;
        }
    }
    cout << r << "\n";

    return 0;
}