結果

問題 No.1240 Or Sum of Xor Pair
ユーザー 👑 NachiaNachia
提出日時 2020-12-13 18:46:13
言語 cLay
(20240714-1)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 173,816 KB
実行使用メモリ 43,392 KB
最終ジャッジ日時 2024-07-05 14:49:48
合計ジャッジ時間 7,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
42,240 KB
testcase_01 AC 96 ms
42,240 KB
testcase_02 AC 104 ms
42,348 KB
testcase_03 AC 101 ms
42,240 KB
testcase_04 AC 108 ms
42,240 KB
testcase_05 AC 128 ms
42,240 KB
testcase_06 AC 111 ms
42,368 KB
testcase_07 AC 107 ms
42,368 KB
testcase_08 AC 106 ms
42,368 KB
testcase_09 AC 104 ms
42,112 KB
testcase_10 AC 106 ms
42,496 KB
testcase_11 AC 92 ms
42,368 KB
testcase_12 AC 103 ms
42,368 KB
testcase_13 AC 119 ms
42,496 KB
testcase_14 AC 95 ms
42,496 KB
testcase_15 AC 140 ms
43,264 KB
testcase_16 AC 126 ms
43,264 KB
testcase_17 AC 118 ms
43,136 KB
testcase_18 AC 129 ms
43,392 KB
testcase_19 AC 140 ms
43,264 KB
testcase_20 AC 145 ms
43,392 KB
testcase_21 AC 138 ms
43,264 KB
testcase_22 AC 131 ms
43,264 KB
testcase_23 AC 120 ms
43,264 KB
testcase_24 AC 133 ms
43,264 KB
testcase_25 AC 122 ms
43,264 KB
testcase_26 AC 138 ms
43,264 KB
testcase_27 AC 114 ms
42,240 KB
testcase_28 AC 112 ms
42,112 KB
testcase_29 AC 108 ms
43,392 KB
testcase_30 AC 115 ms
42,624 KB
testcase_31 AC 117 ms
42,752 KB
testcase_32 AC 114 ms
43,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll N,X,C[1<<18][19],z[18]={},D,x,Z=0,a,i;
{
    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);
			rep(i,0,1<<18,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);
}
0