結果

問題 No.1142 XOR と XOR
ユーザー tktk_snsntktk_snsn
提出日時 2020-11-29 23:47:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 894 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,448 KB
最終ジャッジ日時 2024-11-08 03:50:52
合計ジャッジ時間 21,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 712 ms
10,752 KB
testcase_01 AC 697 ms
10,624 KB
testcase_02 AC 707 ms
10,752 KB
testcase_03 AC 894 ms
37,448 KB
testcase_04 AC 667 ms
28,056 KB
testcase_05 AC 643 ms
25,408 KB
testcase_06 AC 674 ms
30,080 KB
testcase_07 AC 825 ms
16,448 KB
testcase_08 AC 707 ms
34,836 KB
testcase_09 AC 700 ms
34,780 KB
testcase_10 AC 706 ms
34,720 KB
testcase_11 AC 708 ms
10,624 KB
testcase_12 AC 707 ms
10,752 KB
testcase_13 AC 705 ms
10,752 KB
testcase_14 AC 716 ms
27,536 KB
testcase_15 AC 719 ms
24,796 KB
testcase_16 AC 624 ms
11,904 KB
testcase_17 AC 791 ms
15,564 KB
testcase_18 AC 713 ms
11,904 KB
testcase_19 AC 667 ms
30,956 KB
testcase_20 AC 614 ms
25,948 KB
testcase_21 AC 568 ms
21,488 KB
testcase_22 AC 541 ms
14,808 KB
testcase_23 AC 661 ms
29,720 KB
testcase_24 AC 680 ms
31,156 KB
testcase_25 AC 779 ms
21,464 KB
testcase_26 AC 859 ms
33,860 KB
testcase_27 AC 804 ms
23,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from collections import Counter
from operator import xor
n, m, k = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 10 ** 9 + 7


def make_cnt(A):
    Axor = list(accumulate(A, func=xor, initial=0))
    C = Counter(Axor)
    cnt = [0] * 1024
    for i in range(1024):
        cnt[0] += C[i] * (C[i] - 1) // 2
        for j in range(i + 1, 1024):
            cnt[i ^ j] += C[i] * C[j]
            cnt[i ^ j] %= mod
    return cnt


Acnt = make_cnt(A)
Bcnt = make_cnt(B)
ans = 0
for i in range(1024):
    ans += Acnt[i] * Bcnt[k ^ i]
    ans %= mod
print(ans)
0