QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#38292#1176. BinomialwyhaoWA 23ms14408kbC++531b2022-07-05 09:34:592022-07-05 09:35:01

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-07-05 09:35:01]
  • 评测
  • 测评结果:WA
  • 用时:23ms
  • 内存:14408kb
  • [2022-07-05 09:34:59]
  • 提交

answer

#include<cstdio>
#include<cstring>
using namespace std;
const int N=1000005;
typedef long long ll;
int T,n,a[N],s[N],upp[N],b[N];
int main(){
	scanf("%d",&T);
	for(int i=1,j=1;i<N;i++){
		if(i==(j<<1)) j<<=1;
		upp[i]=j;
	}
	while(T--){
		memset(s,0,sizeof s);
		memset(b,0,sizeof b);
		scanf("%d",&n);
		for(int i=1;i<=n;i++){
			scanf("%d",&a[i]);
			s[a[i]]++;
		}
		ll ans=0;
		for(int i=1;i<=1000000;i++){
			b[i]=b[i-upp[i]]+s[i];
			ans+=1ll*s[i]*b[i];
		}
		printf("%lld\n",ans);
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 8ms
memory: 13808kb

input:

2
3
1 5 6
3
1 1 1

output:

4
9

result:

ok 2 number(s): "4 9"

Test #2:

score: -100
Wrong Answer
time: 23ms
memory: 14408kb

input:

10
1
1
3321
108907 496886 513637 107549 602502 235745 583320 401703 649106 841450 806050 127630 250786 780434 780387 256680 723365 604626 255396 251497 992405 594166 951810 524404 585892 85571 821715 581042 711296 187617 367585 862536 856196 312147 121285 967957 495031 855565 619680 318939 618420 91...

output:

1
3398
523
2777
654
884
2157
260
76
494

result:

wrong answer 2nd numbers differ - expected: '38911', found: '3398'