結果

問題 No.1142 XOR と XOR
ユーザー rlangevinrlangevin
提出日時 2023-11-20 12:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,661 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 114,432 KB
最終ジャッジ日時 2024-09-26 06:37:33
合計ジャッジ時間 25,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,856 KB
testcase_01 AC 44 ms
57,472 KB
testcase_02 AC 44 ms
57,728 KB
testcase_03 AC 1,637 ms
111,744 KB
testcase_04 AC 1,286 ms
109,952 KB
testcase_05 AC 1,088 ms
112,000 KB
testcase_06 AC 1,364 ms
108,672 KB
testcase_07 AC 1,661 ms
114,432 KB
testcase_08 AC 1,623 ms
110,152 KB
testcase_09 AC 1,610 ms
110,144 KB
testcase_10 AC 1,600 ms
110,512 KB
testcase_11 AC 43 ms
57,856 KB
testcase_12 AC 43 ms
57,984 KB
testcase_13 AC 43 ms
57,472 KB
testcase_14 AC 877 ms
103,808 KB
testcase_15 AC 863 ms
104,704 KB
testcase_16 AC 114 ms
65,152 KB
testcase_17 AC 1,218 ms
109,824 KB
testcase_18 AC 312 ms
79,232 KB
testcase_19 AC 1,318 ms
111,360 KB
testcase_20 AC 861 ms
103,168 KB
testcase_21 AC 552 ms
90,880 KB
testcase_22 AC 332 ms
82,176 KB
testcase_23 AC 1,230 ms
109,952 KB
testcase_24 AC 1,395 ms
110,592 KB
testcase_25 AC 806 ms
102,272 KB
testcase_26 AC 1,286 ms
107,904 KB
testcase_27 AC 1,035 ms
111,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N2 = 1 << 10
def f(X):
    ans = [0] * N2
    pre = [0] * N2
    dp = [0] * N2
    for i in range(len(X)):
        x = X[i]
        for j in range(N2):
            v = pre[j ^ x]
            dp[j] = v
            ans[j] += v
        dp[x] += 1
        ans[x] += 1
        pre, dp = dp, pre
    return ans

N, M, K = map(int, input().split())
mod = 10 ** 9 + 7
A = list(map(int, input().split()))
B = list(map(int, input().split()))
DA, DB = f(A), f(B)
ans = 0
for i in range(N2):
    ans += DA[i] * DB[i^K]
    ans %= mod

print(ans)
0