結果

問題 No.1240 Or Sum of Xor Pair
ユーザー tailstails
提出日時 2020-09-28 21:16:37
言語 cLay
(20240714-1)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 173,324 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-05 14:17:39
合計ジャッジ時間 9,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
5,248 KB
testcase_01 AC 94 ms
5,376 KB
testcase_02 AC 169 ms
5,376 KB
testcase_03 AC 220 ms
5,632 KB
testcase_04 AC 188 ms
5,632 KB
testcase_05 AC 214 ms
5,760 KB
testcase_06 AC 174 ms
5,632 KB
testcase_07 AC 252 ms
5,376 KB
testcase_08 AC 177 ms
5,376 KB
testcase_09 AC 166 ms
5,504 KB
testcase_10 AC 165 ms
5,632 KB
testcase_11 AC 204 ms
5,632 KB
testcase_12 AC 169 ms
5,632 KB
testcase_13 AC 234 ms
5,632 KB
testcase_14 AC 233 ms
5,632 KB
testcase_15 AC 257 ms
6,400 KB
testcase_16 AC 205 ms
6,400 KB
testcase_17 AC 110 ms
6,272 KB
testcase_18 AC 235 ms
6,528 KB
testcase_19 AC 188 ms
6,528 KB
testcase_20 AC 186 ms
6,528 KB
testcase_21 AC 217 ms
6,656 KB
testcase_22 AC 214 ms
6,400 KB
testcase_23 AC 183 ms
6,528 KB
testcase_24 AC 151 ms
6,656 KB
testcase_25 AC 141 ms
6,656 KB
testcase_26 AC 119 ms
6,272 KB
testcase_27 AC 101 ms
5,376 KB
testcase_28 AC 108 ms
5,376 KB
testcase_29 AC 256 ms
5,376 KB
testcase_30 AC 150 ms
5,376 KB
testcase_31 AC 117 ms
5,376 KB
testcase_32 AC 192 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll d[512][9],e[1<<18],f[512],z;

{
	int n,x,a;
	rd(n,x--);
	rep(n){
		rd(a);
		rep(j,9)d[a>>9][j]+=~a>>j&1;
		e[a]++;
		f[a>>9]++;
	}
	rep(i,512){
		rep(j,512){
			if((i^j)==x>>9){
				rep(k,i<<9,i+1<<9){
					rep(l,j<<9,j+1<<9){
						if((k^l)<=x){
							z+=e[k]*(e[l]-(k==l))*(k|l);
						}
					}
				}
			}
			if((i^j)<x>>9){
				z+=f[i]*(f[j]-(i==j))*((i|j)<<9|511);
				rep(k,9){
					z-=d[i][k]*(d[j][k]-(i==j))<<k;
				}
			}
		}
	}
	wt(z/2);
}
0