#include using namespace std; using i64 = long long; const int N = 1e5 + 10, L = 3e6 + 10; int n, a[N], p[N], cnt[L * 2]; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; for(int i = 1; i <= n; i ++) cin >> a[i]; i64 ans = n * (n + 1ll) / 2 + 1; for(int t = 1; t <= 30; t ++) { i64 x = 0, y = 0; for(int i = 1; i <= n; i ++) { p[i] = p[i - 1] + a[i] - t; if(a[i] != t) { cnt[L + p[i - 1]] ++; y += cnt[L + p[i]]; } } for(int i = 0; i < n; i ++) cnt[L + p[i]] = 0; for(int i = 1; i <= n; i ++) { cnt[L + p[i - 1]] ++; x += cnt[L + p[i]]; } for(int i = 0; i < n; i ++) cnt[L + p[i]] = 0; ans -= x - y; } cout << ans << "\n"; }