QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#689894 | #9231. Random Numbers | ucup-team902# | WA | 156ms | 5444kb | C++23 | 856b | 2024-10-30 19:05:55 | 2024-10-30 19:05:56 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int blk = 500;
void solve() {
int n;
cin >> n;
vector<int> a(n + 1);
vector<long long> sum(n + 1, 0);
for (int i = 1; i <= n; ++i) {
cin >> a[i];
sum[i] = sum[i - 1] + a[i];
}
long long ans = 0;
for (int i = 1; i <= min(blk, n); ++i) {
for (int j = i; j <= n; ++j) {
if (sum[j] - sum[j - i] == 1ll * i * i) ans++;
}
}
for (int i = max(n / 2 - blk, min(blk, n)); i <= min(n, n / 2 + blk); i++) {
for (int j = i; j <= n; ++j) {
if (sum[j] - sum[j - i] == 1ll * i * i) ans++;
}
}
cout << ans << '\n';
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int T = 1;
cin >> T;
while (T--) {
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3580kb
input:
2 3 2 1 3 5 3 4 2 5 1
output:
2 2
result:
ok 2 number(s): "2 2"
Test #2:
score: 0
Accepted
time: 141ms
memory: 3660kb
input:
32 9811 3756 4960 5623 8471 9330 2388 7066 5434 4707 1711 2109 7274 9630 5057 6390 3252 2632 2291 4697 1923 6423 369 2430 2586 549 1344 1518 9170 268 1315 8808 4843 4603 532 2210 275 835 9059 8529 3449 1412 6071 6737 6944 788 8202 6684 6926 1729 7530 6506 9781 5523 5864 7067 9398 3446 2044 2578 2530...
output:
2 1 1 3 1 4 2 2 2 1 3 2 3 4 2 3 1 1 2 2 2 2 2 1 1 2 1 1 3 2 1 1
result:
ok 32 numbers
Test #3:
score: 0
Accepted
time: 150ms
memory: 5444kb
input:
30 197277 196178 84300 27937 106346 19833 131659 146010 164112 125344 93600 5183 26597 55011 30797 100914 95876 43674 164981 46730 54589 170497 74527 174820 95270 4993 78003 192129 55163 191465 156865 7654 164216 22085 118048 86126 178144 77067 60852 180286 180626 3165 43878 111790 131714 96251 9864...
output:
3 2 4 3 1 1 2 1 1 1 2 2 4 2 2 1 3 2 3 5 2 2 2 3 1 2 2 3 3 3
result:
ok 30 numbers
Test #4:
score: 0
Accepted
time: 156ms
memory: 5404kb
input:
1 200000 137314 193717 79689 175047 84798 4387 143791 85750 74947 54899 184128 11640 65653 28078 162472 26557 67059 131134 76117 106373 112748 129954 162927 153580 108335 90723 55445 10637 129723 50828 49548 181363 173509 114849 139837 78161 184622 85313 149952 137930 3981 20555 35145 188575 101906 ...
output:
2
result:
ok 1 number(s): "2"
Test #5:
score: -100
Wrong Answer
time: 119ms
memory: 3648kb
input:
133 1614 1272 303 1151 1402 1380 1564 1048 654 1493 994 1243 972 1437 617 940 458 1220 1597 889 60 3 1420 478 1396 905 528 332 1552 45 1548 503 703 1070 2 770 1413 472 400 1011 584 771 542 1588 1529 566 1467 364 216 835 1035 1462 555 1503 1001 304 378 762 732 948 476 10 799 908 620 295 249 439 718 9...
output:
2 3 2 2 2 2 1 1 2 2 2 1 1 2 1 1 2 2 3 2 2 1 3 2 2 3 2 1 1 3 1 1 2 3 1 3 1 1 1 1 1 1 3 6 6 3 2 1 1 2 2 3 2 4 3 3 2 1 1 3 1 1 2 2 3 1 2 2 1 3 2 4 4 2 2 2 1 1 3 2 2 2 3 3 1 1 1 2 1 3 1 2 2 3 4 6 2 1 4 3 1 2 2 2 1 1 1 2 2 1 2 2 2 2 3 3 1 1 1 1 3 1 2 3 2 1 3 2 2 4 3 1 3
result:
wrong answer 54th numbers differ - expected: '3', found: '4'