結果

問題 No.1142 XOR と XOR
ユーザー 👑 rin204rin204
提出日時 2022-07-10 17:26:26
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 479 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 115,840 KB
最終ジャッジ日時 2024-11-08 04:00:41
合計ジャッジ時間 33,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,624 KB
testcase_01 AC 44 ms
58,496 KB
testcase_02 AC 44 ms
58,496 KB
testcase_03 TLE -
testcase_04 AC 1,597 ms
110,080 KB
testcase_05 AC 1,331 ms
112,000 KB
testcase_06 AC 1,681 ms
109,440 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 45 ms
58,496 KB
testcase_12 AC 45 ms
58,496 KB
testcase_13 AC 45 ms
58,880 KB
testcase_14 AC 1,185 ms
103,680 KB
testcase_15 AC 1,126 ms
105,080 KB
testcase_16 AC 129 ms
65,792 KB
testcase_17 AC 1,590 ms
109,952 KB
testcase_18 AC 409 ms
80,000 KB
testcase_19 AC 1,695 ms
110,720 KB
testcase_20 AC 1,026 ms
103,296 KB
testcase_21 AC 754 ms
90,752 KB
testcase_22 AC 410 ms
82,048 KB
testcase_23 AC 1,589 ms
109,696 KB
testcase_24 AC 1,767 ms
110,620 KB
testcase_25 AC 1,105 ms
102,100 KB
testcase_26 AC 1,712 ms
107,648 KB
testcase_27 AC 1,390 ms
112,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

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

def f(A):
    cnt = [0] * 1024
    cnt2 = [0] * 1024
    cnt2[0] = 1
    xor = 0
    for a in A:
        xor ^= a
        for k in range(1024):
            cnt[xor ^ k] += cnt2[k]
            cnt[xor ^ k] %= MOD
        cnt2[xor] += 1
    return cnt

A = f(A)
B = f(B)
ans = 0
for i in range(1024):
    ans += A[i] * B[i ^ k]
    ans %= MOD
print(ans)
0