結果

問題 No.1142 XOR と XOR
ユーザー iiljjiiljj
提出日時 2020-08-01 17:25:34
言語 cLay
(20240714-1)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 175,560 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-11-08 03:43:12
合計ジャッジ時間 10,748 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
5,248 KB
testcase_01 AC 229 ms
5,248 KB
testcase_02 AC 227 ms
5,248 KB
testcase_03 AC 238 ms
7,808 KB
testcase_04 AC 235 ms
7,040 KB
testcase_05 AC 234 ms
6,656 KB
testcase_06 AC 236 ms
7,168 KB
testcase_07 AC 236 ms
7,296 KB
testcase_08 AC 237 ms
7,808 KB
testcase_09 AC 238 ms
7,680 KB
testcase_10 AC 238 ms
7,680 KB
testcase_11 AC 230 ms
5,248 KB
testcase_12 AC 229 ms
5,248 KB
testcase_13 AC 229 ms
5,248 KB
testcase_14 AC 233 ms
6,016 KB
testcase_15 AC 232 ms
5,888 KB
testcase_16 AC 229 ms
5,248 KB
testcase_17 AC 234 ms
6,528 KB
testcase_18 AC 229 ms
5,248 KB
testcase_19 AC 235 ms
7,040 KB
testcase_20 AC 233 ms
6,016 KB
testcase_21 AC 233 ms
5,248 KB
testcase_22 AC 231 ms
5,248 KB
testcase_23 AC 236 ms
7,040 KB
testcase_24 AC 236 ms
7,168 KB
testcase_25 AC 233 ms
5,888 KB
testcase_26 AC 235 ms
7,168 KB
testcase_27 AC 233 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,m,k,a[1d6],b[1d6],M=1d4,X,Y;{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