#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 998244353;
const ll LOGN = 20;
const ll MAXN = 5e5 + 100;
#define int long long
vector<int> A;
tree<pair<int,int>, null_type, less<pair<int,int>>, rb_tree_tag, tree_order_statistics_node_update> s;
int pref[MAXN];
signed main() {
fast
int N, P;
cin >> N;
A = vector<int>(N+1);
for (int i = 1; i <= N; i++)
cin >> A[i];
for (int i = 1; i <= N; i++)
pref[i] = pref[i-1] + A[i];
cin >> P;
int ans = 0;
for (int i = 1; i <= N; i++) {
s.insert(make_pair(P * i - pref[i-1], i));
ans += s.size() - s.order_of_key(make_pair(P * i - pref[i] + P, -1));
}
cout << ans << "\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
856 KB |
Output is correct |
2 |
Correct |
2 ms |
860 KB |
Output is correct |
3 |
Correct |
2 ms |
860 KB |
Output is correct |
4 |
Runtime error |
80 ms |
23648 KB |
Execution killed with signal 11 |
5 |
Runtime error |
48 ms |
16980 KB |
Execution killed with signal 11 |
6 |
Runtime error |
72 ms |
22008 KB |
Execution killed with signal 11 |
7 |
Runtime error |
78 ms |
22608 KB |
Execution killed with signal 11 |
8 |
Runtime error |
66 ms |
20592 KB |
Execution killed with signal 11 |
9 |
Runtime error |
91 ms |
24152 KB |
Execution killed with signal 11 |
10 |
Runtime error |
75 ms |
22088 KB |
Execution killed with signal 11 |