結果

問題 No.1142 XOR と XOR
ユーザー tailstails
提出日時 2020-07-31 23:12:01
言語 cLay
(20240714-1)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 2,819 ms
コンパイル使用メモリ 175,688 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 03:35:03
合計ジャッジ時間 9,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 390 ms
5,248 KB
testcase_04 AC 305 ms
5,248 KB
testcase_05 AC 252 ms
5,248 KB
testcase_06 AC 317 ms
5,248 KB
testcase_07 AC 384 ms
5,248 KB
testcase_08 AC 390 ms
5,248 KB
testcase_09 AC 389 ms
5,248 KB
testcase_10 AC 389 ms
5,248 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 213 ms
5,248 KB
testcase_15 AC 209 ms
5,248 KB
testcase_16 AC 19 ms
5,248 KB
testcase_17 AC 290 ms
5,248 KB
testcase_18 AC 65 ms
5,248 KB
testcase_19 AC 314 ms
5,248 KB
testcase_20 AC 203 ms
5,248 KB
testcase_21 AC 125 ms
5,248 KB
testcase_22 AC 71 ms
5,248 KB
testcase_23 AC 293 ms
5,248 KB
testcase_24 AC 333 ms
5,248 KB
testcase_25 AC 192 ms
5,248 KB
testcase_26 AC 312 ms
5,248 KB
testcase_27 AC 249 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int n,m,k,d,a;
Mint as[1024],bs[1024],at[1024],bt[1024];
Mint r;
{
	rd(n,m,k);

	d=0;
	rep(i,n){
		rd(a);
		at[d]+=1;
		d^=a;
		rep(j,1024)as[j]+=at[j^d];
	}

	d=0;
	rep(i,m){
		rd(a);
		bt[d]+=1;
		d^=a;
		rep(j,1024)bs[j]+=bt[j^d];
	}

	rep(j,1024)r+=as[j]*bs[j^k];
	wt(r);
}
0