結果

問題 No.1142 XOR と XOR
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-07 23:54:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 114,688 KB
最終ジャッジ日時 2024-11-08 03:59:13
合計ジャッジ時間 4,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
61,056 KB
testcase_01 AC 59 ms
61,184 KB
testcase_02 AC 62 ms
61,056 KB
testcase_03 AC 145 ms
107,776 KB
testcase_04 AC 127 ms
109,952 KB
testcase_05 AC 120 ms
107,648 KB
testcase_06 AC 127 ms
108,800 KB
testcase_07 AC 135 ms
114,688 KB
testcase_08 AC 140 ms
108,544 KB
testcase_09 AC 141 ms
108,800 KB
testcase_10 AC 143 ms
108,672 KB
testcase_11 AC 60 ms
61,312 KB
testcase_12 AC 59 ms
61,056 KB
testcase_13 AC 59 ms
61,312 KB
testcase_14 AC 110 ms
103,808 KB
testcase_15 AC 111 ms
104,960 KB
testcase_16 AC 68 ms
66,432 KB
testcase_17 AC 122 ms
109,568 KB
testcase_18 AC 76 ms
75,136 KB
testcase_19 AC 131 ms
110,464 KB
testcase_20 AC 110 ms
103,424 KB
testcase_21 AC 90 ms
88,704 KB
testcase_22 AC 79 ms
77,184 KB
testcase_23 AC 130 ms
109,824 KB
testcase_24 AC 135 ms
110,208 KB
testcase_25 AC 106 ms
101,888 KB
testcase_26 AC 129 ms
107,776 KB
testcase_27 AC 118 ms
105,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
M = 1<<10
mod = 10**9+7
ca = [0]*M
cb = [0]*M
ca[0] += 1
cb[0] += 1
num = 0
for a in A:
    num ^= a
    ca[num] += 1
num = 0
for b in B:
    num ^= b
    cb[num] += 1

sA,sB = [0]*M,[0]*M
for i in range(M):
    for j in range(i+1):
        if i == j:
            sA[0] += ca[i]*(ca[i]-1)//2
            sA[0] %= mod
            sB[0] += cb[i]*(cb[i]-1)//2
            sB[0] %= mod
        else:
            sA[i^j] += ca[i]*ca[j]
            sA[i^j] %= mod
            sB[i^j] += cb[i]*cb[j]
            sB[i^j] %= mod


ans = 0
for i in range(M):
    ans += sA[i]*sB[k^i]%mod
    ans %= mod
print(ans)
0