結果

問題 No.1142 XOR と XOR
ユーザー roarisroaris
提出日時 2020-11-18 19:02:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-11-08 03:49:39
合計ジャッジ時間 4,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
60,672 KB
testcase_01 AC 58 ms
61,056 KB
testcase_02 AC 61 ms
60,800 KB
testcase_03 AC 140 ms
105,964 KB
testcase_04 AC 123 ms
108,800 KB
testcase_05 AC 117 ms
106,240 KB
testcase_06 AC 128 ms
107,136 KB
testcase_07 AC 136 ms
113,536 KB
testcase_08 AC 144 ms
107,008 KB
testcase_09 AC 139 ms
107,136 KB
testcase_10 AC 140 ms
107,264 KB
testcase_11 AC 57 ms
60,544 KB
testcase_12 AC 58 ms
60,416 KB
testcase_13 AC 58 ms
60,928 KB
testcase_14 AC 107 ms
102,656 KB
testcase_15 AC 110 ms
104,064 KB
testcase_16 AC 72 ms
65,920 KB
testcase_17 AC 123 ms
108,928 KB
testcase_18 AC 77 ms
74,752 KB
testcase_19 AC 131 ms
109,312 KB
testcase_20 AC 110 ms
102,656 KB
testcase_21 AC 92 ms
87,808 KB
testcase_22 AC 81 ms
76,544 KB
testcase_23 AC 126 ms
108,416 KB
testcase_24 AC 133 ms
108,928 KB
testcase_25 AC 106 ms
101,248 KB
testcase_26 AC 128 ms
106,624 KB
testcase_27 AC 118 ms
104,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M, K = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
now = 0
cnt = [0]*1024
cnt[0] = 1

for ai in a:
    now ^= ai
    cnt[now] += 1

cnt2 = [0]*1024

for i in range(1024):
    for j in range(i):
        cnt2[i^j] += cnt[i]*cnt[j]
    
    cnt2[0] += cnt[i]*(cnt[i]-1)//2

now = 0
cnt3 = [0]*1024
cnt3[0] = 1

for bi in b:
    now ^= bi
    cnt3[now] += 1

cnt4 = [0]*1024

for i in range(1024):
    for j in range(i):
        cnt4[i^j] += cnt3[i]*cnt3[j]
    
    cnt4[0] += cnt3[i]*(cnt3[i]-1)//2

ans = 0
MOD = 10**9+7

for i in range(1024):
    ans = (ans+cnt2[i]*cnt4[i^K])%MOD

print(ans)
0