結果

問題 No.1870 Xor Matrix
ユーザー ShirotsumeShirotsume
提出日時 2022-03-11 22:49:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 258,008 KB
最終ジャッジ日時 2024-09-16 03:13:09
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 239 ms
185,872 KB
testcase_04 AC 356 ms
255,380 KB
testcase_05 AC 252 ms
203,288 KB
testcase_06 AC 322 ms
206,328 KB
testcase_07 AC 369 ms
234,472 KB
testcase_08 AC 314 ms
243,788 KB
testcase_09 AC 241 ms
158,652 KB
testcase_10 AC 267 ms
199,708 KB
testcase_11 AC 355 ms
225,240 KB
testcase_12 AC 311 ms
236,336 KB
testcase_13 AC 220 ms
152,092 KB
testcase_14 AC 344 ms
257,816 KB
testcase_15 AC 190 ms
147,288 KB
testcase_16 AC 255 ms
163,508 KB
testcase_17 AC 370 ms
258,008 KB
testcase_18 AC 279 ms
208,516 KB
testcase_19 AC 389 ms
240,320 KB
testcase_20 AC 301 ms
190,808 KB
testcase_21 AC 191 ms
168,408 KB
testcase_22 AC 238 ms
186,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())
mod = 998244353
A = list(map(int,input().split()))
B = list(map(int,input().split()))

def solve(bit):
    a = []
    b = []

    for i in range(n):
        a.append(1 if 1 & (A[i] >> bit) else 0)
    for i in range(m):
        b.append(1 if 1 & (B[i] >> bit) else 0)
    
    if sum(a) % 2 != sum(b) % 2:
        return 0
    else:
        time = pow(2, n + m - 1, mod)
        al = pow(2, n * m, mod)
        ans = (al * pow(time, mod - 2, mod)) % mod
        return ans
    
ans = 1
for i in range(20):
    ans *= solve(i)
    ans %= mod
print(ans)




0