結果

問題 No.1870 Xor Matrix
ユーザー pluto77pluto77
提出日時 2022-03-12 11:56:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,484 KB
最終ジャッジ日時 2024-09-16 17:40:03
合計ジャッジ時間 4,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 114 ms
22,984 KB
testcase_04 AC 160 ms
27,264 KB
testcase_05 AC 114 ms
27,212 KB
testcase_06 AC 129 ms
22,528 KB
testcase_07 AC 146 ms
24,104 KB
testcase_08 AC 148 ms
26,824 KB
testcase_09 AC 103 ms
22,396 KB
testcase_10 AC 131 ms
28,484 KB
testcase_11 AC 141 ms
29,260 KB
testcase_12 AC 150 ms
30,244 KB
testcase_13 AC 98 ms
20,572 KB
testcase_14 AC 160 ms
27,052 KB
testcase_15 AC 93 ms
20,096 KB
testcase_16 AC 105 ms
20,520 KB
testcase_17 AC 171 ms
30,484 KB
testcase_18 AC 135 ms
24,168 KB
testcase_19 AC 152 ms
26,996 KB
testcase_20 AC 122 ms
22,828 KB
testcase_21 AC 82 ms
20,164 KB
testcase_22 AC 110 ms
24,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1870
mod=998244353
n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
c=0
for i in range(n):
 c^=a[i]
for i in range(m):
 c^=b[i]
if c:
 print(0)
 exit()
print(pow(2,(n-1)*(m-1)*20,mod))
0