結果

問題 No.1142 XOR と XOR
ユーザー H3PO4H3PO4
提出日時 2021-10-31 14:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,456 KB
最終ジャッジ日時 2024-11-08 03:58:33
合計ジャッジ時間 4,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
60,416 KB
testcase_01 AC 60 ms
60,416 KB
testcase_02 AC 61 ms
60,160 KB
testcase_03 AC 156 ms
112,456 KB
testcase_04 AC 130 ms
106,624 KB
testcase_05 AC 121 ms
106,496 KB
testcase_06 AC 132 ms
104,064 KB
testcase_07 AC 142 ms
109,912 KB
testcase_08 AC 150 ms
112,164 KB
testcase_09 AC 154 ms
112,164 KB
testcase_10 AC 151 ms
111,908 KB
testcase_11 AC 60 ms
60,416 KB
testcase_12 AC 60 ms
60,416 KB
testcase_13 AC 59 ms
60,160 KB
testcase_14 AC 116 ms
105,344 KB
testcase_15 AC 116 ms
105,984 KB
testcase_16 AC 67 ms
65,152 KB
testcase_17 AC 127 ms
110,336 KB
testcase_18 AC 76 ms
75,136 KB
testcase_19 AC 136 ms
105,984 KB
testcase_20 AC 117 ms
105,216 KB
testcase_21 AC 92 ms
89,856 KB
testcase_22 AC 80 ms
77,824 KB
testcase_23 AC 134 ms
105,600 KB
testcase_24 AC 141 ms
107,264 KB
testcase_25 AC 116 ms
106,496 KB
testcase_26 AC 136 ms
106,544 KB
testcase_27 AC 125 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def xoracc(X):
    r = 0
    table = [0] * (1 << 10)
    table[0] = 1
    for x in X:
        r ^= x
        table[r] += 1

    table2 = [0] * (1 << 10)
    for i, ci in enumerate(table):
        for j, cj in enumerate(table):
            table2[i ^ j] += ci * cj
    table2[0] -= len(X) + 1
    for i in range(1 << 10):
        table2[i] //= 2

    return table2


N, M, K = map(int, input().split())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
MOD = 10 ** 9 + 7
ans = 0
AT = xoracc(A)
BT = xoracc(B)
for i in range(1 << 10):
    j = K ^ i
    ans += AT[i] * BT[j]
    ans %= MOD
print(ans)
0