結果

問題 No.1142 XOR と XOR
ユーザー tailstails
提出日時 2020-07-31 22:47:40
言語 cLay
(20240714-1)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 175,068 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-11-08 03:33:45
合計ジャッジ時間 10,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 377 ms
6,016 KB
testcase_04 AC 296 ms
5,632 KB
testcase_05 AC 243 ms
5,376 KB
testcase_06 AC 308 ms
5,632 KB
testcase_07 AC 374 ms
5,888 KB
testcase_08 AC 374 ms
5,888 KB
testcase_09 AC 377 ms
5,888 KB
testcase_10 AC 378 ms
5,888 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 202 ms
5,248 KB
testcase_15 AC 195 ms
5,248 KB
testcase_16 AC 17 ms
5,248 KB
testcase_17 AC 281 ms
5,248 KB
testcase_18 AC 64 ms
5,248 KB
testcase_19 AC 305 ms
5,760 KB
testcase_20 AC 198 ms
5,248 KB
testcase_21 AC 122 ms
5,248 KB
testcase_22 AC 69 ms
5,248 KB
testcase_23 AC 285 ms
5,376 KB
testcase_24 AC 323 ms
5,760 KB
testcase_25 AC 185 ms
5,248 KB
testcase_26 AC 301 ms
5,632 KB
testcase_27 AC 242 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int n,m,k,a[2d5],b[2d5];
Mint as[1024],bs[1024],c0[1024],c1[1024];
Mint r;
{
	rd(n,m,k,a(n),b(m));
	rep(j,1024)c0[j]=0;
	rep(i,n){
		rep(j,1024)c1[j]=c0[j^a[i]];
		c1[a[i]]+=1;
		rep(j,1024)as[j]+=c0[j]=c1[j];
	}
	rep(j,1024)c0[j]=0;
	rep(i,m){
		rep(j,1024)c1[j]=c0[j^b[i]];
		c1[b[i]]+=1;
		rep(j,1024)bs[j]+=c0[j]=c1[j];
	}
	rep(j,1024)r+=as[j]*bs[j^k];
	wt(r);
}
0