結果

問題 No.1870 Xor Matrix
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-12 14:30:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,960 KB
最終ジャッジ日時 2024-09-16 21:08:16
合計ジャッジ時間 3,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ca,cb = 0,0
for a in A:
    ca ^= a
for b in B:
    cb ^= b

if ca != cb:
    print(0)
    exit()

mod = 998244353

ans = pow(1<<20,(n-1)*(m-1),mod)
print(ans)
0