結果

問題 No.1870 Xor Matrix
ユーザー minimumminimum
提出日時 2022-03-11 21:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 107,384 KB
最終ジャッジ日時 2024-09-16 01:40:58
合計ジャッジ時間 3,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 76 ms
95,232 KB
testcase_04 AC 96 ms
104,576 KB
testcase_05 AC 76 ms
94,720 KB
testcase_06 AC 83 ms
100,608 KB
testcase_07 AC 94 ms
105,344 KB
testcase_08 AC 94 ms
103,168 KB
testcase_09 AC 71 ms
89,216 KB
testcase_10 AC 82 ms
101,120 KB
testcase_11 AC 91 ms
106,624 KB
testcase_12 AC 92 ms
107,264 KB
testcase_13 AC 69 ms
87,424 KB
testcase_14 AC 98 ms
107,384 KB
testcase_15 AC 68 ms
86,656 KB
testcase_16 AC 73 ms
90,752 KB
testcase_17 AC 102 ms
103,808 KB
testcase_18 AC 83 ms
101,980 KB
testcase_19 AC 94 ms
104,960 KB
testcase_20 AC 76 ms
96,256 KB
testcase_21 AC 64 ms
81,152 KB
testcase_22 AC 76 ms
93,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ax = 0
for i in A:
    ax ^= i
bx = 0
for i in B:
    bx ^= i

if ax != bx:
    print(0)
else:
    print(pow(2, 20 * ((N - 1) * (M - 1)), MOD))
0