結果

問題 No.1142 XOR と XOR
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-08 13:48:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 114,432 KB
最終ジャッジ日時 2024-11-08 03:59:04
合計ジャッジ時間 4,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
62,208 KB
testcase_01 AC 63 ms
61,952 KB
testcase_02 AC 65 ms
62,848 KB
testcase_03 AC 142 ms
107,520 KB
testcase_04 AC 125 ms
110,336 KB
testcase_05 AC 120 ms
107,520 KB
testcase_06 AC 130 ms
108,288 KB
testcase_07 AC 136 ms
114,432 KB
testcase_08 AC 142 ms
108,672 KB
testcase_09 AC 144 ms
108,544 KB
testcase_10 AC 143 ms
108,544 KB
testcase_11 AC 64 ms
62,336 KB
testcase_12 AC 64 ms
62,848 KB
testcase_13 AC 63 ms
62,208 KB
testcase_14 AC 112 ms
103,808 KB
testcase_15 AC 112 ms
105,088 KB
testcase_16 AC 70 ms
66,432 KB
testcase_17 AC 124 ms
109,568 KB
testcase_18 AC 78 ms
75,520 KB
testcase_19 AC 132 ms
110,976 KB
testcase_20 AC 112 ms
104,064 KB
testcase_21 AC 92 ms
88,832 KB
testcase_22 AC 82 ms
77,824 KB
testcase_23 AC 128 ms
109,696 KB
testcase_24 AC 133 ms
110,336 KB
testcase_25 AC 109 ms
102,272 KB
testcase_26 AC 129 ms
108,032 KB
testcase_27 AC 119 ms
105,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

mod = 10**9+7

def func(A):
    n = len(A)
    cnt = [0]*(1<<10)
    total = 0
    cnt[0] = 1
    for a in A:
        total ^= a
        cnt[total] += 1
    res = [0]*(1<<10)
    for i in range(1<<10):
        for j in range(i+1, 1<<10):
            res[i^j] += cnt[i]*cnt[j]
    for i in range(1<<10):
        res[i^i] += cnt[i]*(cnt[i]-1)//2
    return res

CA = func(A)
CB = func(B)
ans = 0
for a in range(1<<10):
    for b in range(1<<10):
        if a^b == k:
            ans += CA[a]*CB[b]
            ans %= mod
print(ans)
0