結果

問題 No.1142 XOR と XOR
ユーザー mkawa2mkawa2
提出日時 2021-05-28 17:08:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,216 KB
最終ジャッジ日時 2024-11-08 03:58:05
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
60,928 KB
testcase_01 AC 60 ms
61,056 KB
testcase_02 AC 60 ms
60,672 KB
testcase_03 AC 130 ms
117,760 KB
testcase_04 AC 126 ms
116,224 KB
testcase_05 AC 114 ms
111,360 KB
testcase_06 AC 121 ms
118,144 KB
testcase_07 AC 128 ms
120,448 KB
testcase_08 AC 131 ms
118,656 KB
testcase_09 AC 135 ms
119,040 KB
testcase_10 AC 131 ms
119,040 KB
testcase_11 AC 60 ms
61,312 KB
testcase_12 AC 59 ms
60,928 KB
testcase_13 AC 59 ms
61,184 KB
testcase_14 AC 100 ms
100,608 KB
testcase_15 AC 101 ms
101,760 KB
testcase_16 AC 65 ms
65,280 KB
testcase_17 AC 117 ms
115,968 KB
testcase_18 AC 74 ms
74,240 KB
testcase_19 AC 125 ms
121,216 KB
testcase_20 AC 101 ms
100,352 KB
testcase_21 AC 88 ms
85,376 KB
testcase_22 AC 77 ms
75,520 KB
testcase_23 AC 126 ms
118,528 KB
testcase_24 AC 130 ms
117,248 KB
testcase_25 AC 99 ms
98,432 KB
testcase_26 AC 127 ms
119,296 KB
testcase_27 AC 117 ms
111,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

def CNT(aa):
    cnt = [0]*(1 << 10)
    cnt[0] = 1
    s = 0
    for a in aa:
        s ^= a
        cnt[s] += 1
    cntlr = [0]*(1 << 10)
    for i in range(1 << 10):
        cntlr[0] += cnt[i]*(cnt[i]-1)//2
        cntlr[0] %= md
        for j in range(i):
            cntlr[i ^ j] += cnt[i]*cnt[j]
            cntlr[i ^ j] %= md
    return cntlr

n, m, k = LI()
aa = LI()
bb = LI()

cnt1 = CNT(aa)
cnt2 = CNT(bb)
ans = 0
for i in range(1 << 10):
    ans += cnt1[i]*cnt2[i ^ k]
    ans%=md

print(ans)
0