結果

問題 No.1240 Or Sum of Xor Pair
ユーザー 👑 NachiaNachia
提出日時 2020-09-28 22:54:16
言語 cLay
(20240714-1)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 173,808 KB
実行使用メモリ 43,392 KB
最終ジャッジ日時 2024-07-05 14:17:30
合計ジャッジ時間 7,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
42,368 KB
testcase_01 AC 101 ms
42,368 KB
testcase_02 AC 105 ms
42,240 KB
testcase_03 AC 73 ms
42,240 KB
testcase_04 AC 83 ms
42,368 KB
testcase_05 AC 106 ms
42,240 KB
testcase_06 AC 77 ms
42,240 KB
testcase_07 AC 77 ms
42,368 KB
testcase_08 AC 74 ms
42,368 KB
testcase_09 AC 72 ms
42,240 KB
testcase_10 AC 96 ms
42,368 KB
testcase_11 AC 79 ms
42,496 KB
testcase_12 AC 95 ms
42,496 KB
testcase_13 AC 101 ms
42,496 KB
testcase_14 AC 79 ms
42,624 KB
testcase_15 AC 119 ms
43,392 KB
testcase_16 AC 111 ms
43,264 KB
testcase_17 AC 103 ms
43,392 KB
testcase_18 AC 111 ms
43,392 KB
testcase_19 AC 106 ms
43,136 KB
testcase_20 AC 130 ms
43,392 KB
testcase_21 AC 118 ms
43,264 KB
testcase_22 AC 116 ms
43,392 KB
testcase_23 AC 103 ms
43,392 KB
testcase_24 AC 116 ms
43,264 KB
testcase_25 AC 97 ms
43,392 KB
testcase_26 AC 125 ms
43,392 KB
testcase_27 AC 111 ms
42,368 KB
testcase_28 AC 107 ms
42,240 KB
testcase_29 AC 101 ms
43,264 KB
testcase_30 AC 111 ms
42,752 KB
testcase_31 AC 115 ms
42,880 KB
testcase_32 AC 103 ms
43,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll N,X,C[1<<18][19],z[18]={},D,x,Z=0,a;
{
    rd(N,X);
	rep(i,N){
		rd(a);
		rep(j,18) if(!(a&1<<j)) C[a][j]++;
		C[a][18]++;
	}
	rep(d,19){
		D=1<<d;
		if(X&D){
			x=(X-D)&~(D-1);
			for (int i=0; i<1<<18; i+=D) rep(j,18) z[j] += C[i][18]*C[i^x][18]-C[i][j]*C[i^x][j];
		}
		rep(i,1<<18){ if(i&D) rep(j,19) C[i-D][j]+=C[i][j]; }
	}
	rep(i,18) Z += ((z[i]-N+C[0][i])/2)<<i;
	wt(Z);
	return 0;
}
0