結果

問題 No.1870 Xor Matrix
ユーザー rlangevinrlangevin
提出日時 2023-02-09 01:19:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 235,248 KB
最終ジャッジ日時 2024-07-06 09:20:57
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 198 ms
190,132 KB
testcase_04 AC 95 ms
106,340 KB
testcase_05 AC 219 ms
224,612 KB
testcase_06 AC 125 ms
149,504 KB
testcase_07 AC 89 ms
105,248 KB
testcase_08 AC 311 ms
235,248 KB
testcase_09 AC 77 ms
102,016 KB
testcase_10 AC 211 ms
210,100 KB
testcase_11 AC 239 ms
231,672 KB
testcase_12 AC 88 ms
107,776 KB
testcase_13 AC 65 ms
98,304 KB
testcase_14 AC 100 ms
107,904 KB
testcase_15 AC 158 ms
154,644 KB
testcase_16 AC 204 ms
171,276 KB
testcase_17 AC 99 ms
115,344 KB
testcase_18 AC 271 ms
207,204 KB
testcase_19 AC 109 ms
119,392 KB
testcase_20 AC 87 ms
107,632 KB
testcase_21 AC 156 ms
174,768 KB
testcase_22 AC 193 ms
187,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 998244353
for c in range(25):
    a, b = [], []
    for i in range(N):
        a.append( (A[i] >> c) & 1 )
    for j in range(M):
        b.append( (B[j] >> c) & 1 )
    b[0] ^= sum(a)%2
    if sum(b) % 2:
        print(0)
        exit()
        
ans = pow(2, (N - 1) * (M - 1) * 20, mod)
print(ans)
0