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
#pragma GCC optimize("Ofast")
#pragma GCC target("fma,avx")

#include <bits/stdc++.h>
using namespace std;

int n,s, arr[502], sz, l, r, cnt[20000002];
vector <int> t;
long long res;

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

  cin >> n;
  for(int i=1; i<=n; i++)
    cin >> arr[i];

  for(int i=1; i<=n; i++)
  {
    s = 0;
    for(int j=i; j<=n; j++)
    {
      s += arr[j];
      t.push_back(s+10000000);
    }
  }
  sz = t.size();

  for(int i=0; i<sz-1; i++)
  {
    for(int j=i+1; j<sz; j++)
      res += cnt[30000000-t[i]-t[j]];
    cnt[t[i]]++;
  }
  cout << res << '\n';
}