結果

問題 No.1142 XOR と XOR
ユーザー rlangevinrlangevin
提出日時 2023-11-20 12:06:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 114,944 KB
最終ジャッジ日時 2024-09-26 06:36:31
合計ジャッジ時間 42,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 37 ms
57,600 KB
testcase_02 AC 37 ms
58,240 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,755 ms
111,616 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 38 ms
58,108 KB
testcase_12 AC 37 ms
57,984 KB
testcase_13 AC 38 ms
57,984 KB
testcase_14 AC 1,428 ms
103,296 KB
testcase_15 AC 1,426 ms
104,832 KB
testcase_16 AC 155 ms
75,904 KB
testcase_17 TLE -
testcase_18 AC 494 ms
81,408 KB
testcase_19 TLE -
testcase_20 AC 1,419 ms
103,040 KB
testcase_21 AC 887 ms
91,008 KB
testcase_22 AC 517 ms
82,560 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,343 ms
101,120 KB
testcase_26 TLE -
testcase_27 AC 1,718 ms
112,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N2 = 1 << 10
def f(X):
    ans = [0] * N2
    pre = [0] * N2
    for i in range(len(X)):
        dp = [0] * N2
        dp[X[i]] = 1
        for j in range(N2):
            dp[j] += pre[j ^ X[i]]
            ans[j] += dp[j]
        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