結果

問題 No.1142 XOR と XOR
ユーザー qumazakiqumazaki
提出日時 2020-09-08 18:47:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 114,304 KB
最終ジャッジ日時 2024-11-08 03:49:18
合計ジャッジ時間 4,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
62,336 KB
testcase_01 AC 63 ms
62,336 KB
testcase_02 AC 62 ms
61,952 KB
testcase_03 AC 146 ms
107,728 KB
testcase_04 AC 135 ms
109,824 KB
testcase_05 AC 131 ms
107,776 KB
testcase_06 AC 139 ms
108,544 KB
testcase_07 AC 146 ms
114,304 KB
testcase_08 AC 153 ms
108,800 KB
testcase_09 AC 154 ms
108,288 KB
testcase_10 AC 152 ms
108,800 KB
testcase_11 AC 69 ms
62,336 KB
testcase_12 AC 69 ms
62,208 KB
testcase_13 AC 69 ms
61,952 KB
testcase_14 AC 119 ms
103,680 KB
testcase_15 AC 119 ms
104,960 KB
testcase_16 AC 79 ms
67,200 KB
testcase_17 AC 132 ms
109,696 KB
testcase_18 AC 87 ms
76,288 KB
testcase_19 AC 141 ms
110,976 KB
testcase_20 AC 120 ms
103,424 KB
testcase_21 AC 100 ms
89,600 KB
testcase_22 AC 88 ms
78,336 KB
testcase_23 AC 138 ms
109,824 KB
testcase_24 AC 144 ms
109,952 KB
testcase_25 AC 119 ms
101,888 KB
testcase_26 AC 139 ms
107,520 KB
testcase_27 AC 129 ms
105,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
mod = 10**9+7

ax = [0]*1024
bx = [0]*1024
for xx,x in zip([ax,bx],[a,b]):
    tmp = 0
    # xx[0] += 1
    for xi in x:
        tmp = tmp^xi
        xx[tmp] += 1

ax2 = [ ai*2 for ai in ax]
bx2 = [ bi*2 for bi in bx]
for xx,xx2 in zip([ax,bx],[ax2,bx2]):
    for i in range(1024):
        for j in range(1024):
            if(i==j):
                xx2[0] += (xx[i]*(xx[i]-1))
                xx2[0] %= mod
            else:
                xx2[i ^ j] += xx[i]*xx[j]
                xx2[i ^ j] %= mod

ans = 0
for i in range(1024):
    ans += ax2[i] * bx2[k^i]
    ans %= mod
ans *= pow(4,mod-2,mod)
ans %= mod

print(ans)
0