結果

問題 No.1870 Xor Matrix
ユーザー 👑 rin204rin204
提出日時 2022-03-11 21:37:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-09-16 01:45:09
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 76 ms
95,744 KB
testcase_04 AC 98 ms
104,832 KB
testcase_05 AC 75 ms
94,976 KB
testcase_06 AC 83 ms
103,040 KB
testcase_07 AC 93 ms
104,996 KB
testcase_08 AC 94 ms
102,912 KB
testcase_09 AC 71 ms
89,856 KB
testcase_10 AC 84 ms
103,864 KB
testcase_11 AC 95 ms
108,928 KB
testcase_12 AC 93 ms
107,520 KB
testcase_13 AC 70 ms
88,448 KB
testcase_14 AC 99 ms
107,136 KB
testcase_15 AC 69 ms
86,912 KB
testcase_16 AC 73 ms
92,160 KB
testcase_17 AC 104 ms
103,680 KB
testcase_18 AC 82 ms
103,808 KB
testcase_19 AC 95 ms
105,276 KB
testcase_20 AC 78 ms
98,688 KB
testcase_21 AC 63 ms
82,048 KB
testcase_22 AC 75 ms
95,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

x = 0
for a in A + B:
    x ^= a
if x != 0:
    print(0)
    exit()
    
ans = pow(1 << 20, (n - 1) * (m - 1), MOD)
print(ans)
0