結果

問題 No.1870 Xor Matrix
ユーザー ああいい
提出日時 2022-03-11 21:32:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-09-16 01:38:10
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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()))
S = 0
T = 0
for a in A:
    S ^= a
for b in B:
    T ^= b
import sys
if S != T:
    print(0)
    exit()

P = 998244353
C = pow(2,20,P)
ans = pow(C,(N-1)*(M-1),P)
print(ans)
0