結果

問題 No.1870 Xor Matrix
ユーザー lloyzlloyz
提出日時 2022-03-11 22:19:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,312 KB
最終ジャッジ日時 2024-09-16 02:40:15
合計ジャッジ時間 3,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 118 ms
22,732 KB
testcase_04 AC 167 ms
28,424 KB
testcase_05 AC 116 ms
27,208 KB
testcase_06 AC 127 ms
22,524 KB
testcase_07 AC 146 ms
24,236 KB
testcase_08 AC 145 ms
26,844 KB
testcase_09 AC 102 ms
22,120 KB
testcase_10 AC 130 ms
28,484 KB
testcase_11 AC 143 ms
29,124 KB
testcase_12 AC 144 ms
30,256 KB
testcase_13 AC 96 ms
20,444 KB
testcase_14 AC 160 ms
26,800 KB
testcase_15 AC 91 ms
19,968 KB
testcase_16 AC 106 ms
20,388 KB
testcase_17 AC 169 ms
30,312 KB
testcase_18 AC 129 ms
23,956 KB
testcase_19 AC 149 ms
26,920 KB
testcase_20 AC 118 ms
22,960 KB
testcase_21 AC 84 ms
20,032 KB
testcase_22 AC 111 ms
25,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 998244353

Axs = 0
for i in range(n):
    Axs ^= A[i]
Bxs = 0
for i in range(m):
    Bxs ^= B[i]

if Axs != Bxs:
    print(0)
    exit()

print(pow(2, 20 * (n - 1) * (m - 1), mod))
0