QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#697061 | #9231. Random Numbers | jimmyywang | WA | 546ms | 3680kb | C++14 | 1.0kb | 2024-11-01 10:05:28 | 2024-11-01 10:05:29 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
// #define mp make_pair
#define pb push_back
#define f(i,a,b) for(int i=a;i<=b;i++)
#define fd(i,a,b) for(int i=a;i>=b;i--)
ll rd(){
ll x=0,f=1;char c=getchar();
while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();}
while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
return x*f;
}
#define d rd()
ll n;
ll c[200010];
ll B=500;
bool ch(ll l,ll r){
return c[r]-c[l-1]==(r-l+1)*(r-l+1);
}
int main(){ll T=d;
while(T--){
n=d;ll res=0;
f(i,1,n)c[i]=c[i-1]+d;
// f(i,1,n){
// f(j,i,i+B){
// if(j>n)break;
// res+=ch(i,j);
// }f(j,i+n/2-B,i+n/2+B){
// if(j<=0||j>n||i>j||j<=i+B)continue;
// res+=ch(i,j);
// }
// }
f(i,1,n){
f(j,i,i+4000){
if(j>n)break;
res+=ch(i,j);
}
}
cout<<res<<endl;
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3628kb
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: -100
Wrong Answer
time: 546ms
memory: 3680kb
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:
1 1 1 3 1 4 2 2 2 1 3 1 3 4 1 3 1 1 1 2 2 1 2 1 1 1 1 1 3 2 1 1
result:
wrong answer 1st numbers differ - expected: '2', found: '1'