結果

問題 No.1142 XOR と XOR
ユーザー iiljjiiljj
提出日時 2020-08-01 17:18:18
言語 cLay
(20240714-1)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 2,754 ms
コンパイル使用メモリ 175,788 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-11-08 03:42:33
合計ジャッジ時間 11,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
19,072 KB
testcase_01 AC 242 ms
19,072 KB
testcase_02 AC 242 ms
19,072 KB
testcase_03 AC 245 ms
20,224 KB
testcase_04 AC 246 ms
20,096 KB
testcase_05 AC 246 ms
20,096 KB
testcase_06 AC 246 ms
19,968 KB
testcase_07 AC 249 ms
19,840 KB
testcase_08 AC 248 ms
20,096 KB
testcase_09 AC 248 ms
19,968 KB
testcase_10 AC 247 ms
20,096 KB
testcase_11 AC 243 ms
19,200 KB
testcase_12 AC 241 ms
19,072 KB
testcase_13 AC 241 ms
19,072 KB
testcase_14 AC 243 ms
20,096 KB
testcase_15 AC 245 ms
20,096 KB
testcase_16 AC 241 ms
19,072 KB
testcase_17 AC 244 ms
19,840 KB
testcase_18 AC 242 ms
19,328 KB
testcase_19 AC 246 ms
20,096 KB
testcase_20 AC 244 ms
20,096 KB
testcase_21 AC 243 ms
19,584 KB
testcase_22 AC 241 ms
19,456 KB
testcase_23 AC 245 ms
20,096 KB
testcase_24 AC 246 ms
20,096 KB
testcase_25 AC 244 ms
19,840 KB
testcase_26 AC 246 ms
20,096 KB
testcase_27 AC 246 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{ll n,m,k,a[1d6],b[1d6],M=1d4,X=0,Y=0;rd(n,m,k,a(n),b(m));Mint C[M],D[M],A[M],B[M],R;C[0]=D[0]=1;rep(i,n)C[X^=a[i]]+=1;rep(i,m)D[Y^=b[i]]+=1;rep(i,M){rep(j,i){A[i^j]+=C[i]*C[j];B[i^j]+=D[i]*D[j];}A[0]+=C[i]*(C[i]-1)/2;B[0]+=D[i]*(D[i]-1)/2;}rep(i,M)R+=A[i]*B[k^i];wt(R);}
0