結果

問題 No.1870 Xor Matrix
ユーザー prussian_coderprussian_coder
提出日時 2022-03-19 16:07:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 743 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,368 KB
最終ジャッジ日時 2024-10-04 18:05:19
合計ジャッジ時間 4,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,080 KB
testcase_01 AC 33 ms
52,624 KB
testcase_02 AC 34 ms
52,920 KB
testcase_03 AC 63 ms
85,504 KB
testcase_04 AC 80 ms
100,876 KB
testcase_05 AC 62 ms
85,852 KB
testcase_06 AC 66 ms
89,712 KB
testcase_07 AC 71 ms
94,380 KB
testcase_08 AC 75 ms
96,092 KB
testcase_09 AC 59 ms
82,376 KB
testcase_10 AC 66 ms
89,692 KB
testcase_11 AC 70 ms
93,512 KB
testcase_12 AC 72 ms
94,712 KB
testcase_13 AC 57 ms
81,344 KB
testcase_14 AC 81 ms
101,368 KB
testcase_15 AC 59 ms
78,940 KB
testcase_16 AC 61 ms
82,708 KB
testcase_17 AC 81 ms
99,992 KB
testcase_18 AC 65 ms
90,420 KB
testcase_19 AC 75 ms
97,044 KB
testcase_20 AC 63 ms
87,376 KB
testcase_21 AC 54 ms
77,040 KB
testcase_22 AC 60 ms
85,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[int(x) for x in input().split()]
B=[int(x) for x in input().split()]
mod=998244353
a=0
for i in range(N):
	a^=A[i]
b=0
for i in range(M):
	b^=B[i]	
if a!=b:
	print(0)
else:
	print(pow(2,(N-1)*(M-1)*20,mod))
0