結果

問題 No.1142 XOR と XOR
ユーザー stngstng
提出日時 2022-09-05 22:06:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 954 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 100,448 KB
最終ジャッジ日時 2024-05-01 00:12:44
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,996 KB
testcase_01 AC 43 ms
60,672 KB
testcase_02 AC 40 ms
60,752 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,811 ms
97,500 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 40 ms
60,976 KB
testcase_12 AC 40 ms
61,552 KB
testcase_13 AC 39 ms
61,848 KB
testcase_14 AC 1,555 ms
92,600 KB
testcase_15 AC 1,474 ms
93,128 KB
testcase_16 AC 161 ms
76,324 KB
testcase_17 TLE -
testcase_18 AC 524 ms
79,236 KB
testcase_19 TLE -
testcase_20 AC 1,415 ms
92,460 KB
testcase_21 AC 946 ms
85,628 KB
testcase_22 AC 531 ms
80,456 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,379 ms
91,476 KB
testcase_26 TLE -
testcase_27 AC 1,805 ms
97,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]

mod = 10**9+7
ngs = 1024#1024

arui = [0]*(ngs)
arui[0] = 1
ali = [0]*(ngs)

for i in range(n):
    narui = [0]*ngs
    narui[0] = 1
    for j in range(ngs):
        narui[j^a[i]] += arui[j]
        #narui[j^a[i]] %= mod
    arui = narui[:]
    for j in range(ngs):
        if j == 0:
            ali[j] += arui[j]-1
        else:
            ali[j] += arui[j]
        #ali[j] %= mod

brui = [0]*(ngs)
brui[0] = 1
bli = [0]*(ngs)

for i in range(m):
    nbrui = [0]*ngs
    nbrui[0] = 1
    for j in range(ngs):
        nbrui[j^b[i]] += brui[j]
        #nbrui[j^b[i]] %= mod
    brui = nbrui[:]
    for j in range(ngs):
        if j == 0:
            bli[j] += brui[j]-1
        else:
            bli[j] += brui[j]
        #bli[j] %= mod
#print(ali,bli)
#exit()
ans = 0
for i in range(ngs):
    ans += ali[i]*bli[i^k]
    ans %= mod

print(ans)
0