結果

問題 No.1870 Xor Matrix
ユーザー wolgnikwolgnik
提出日時 2022-03-11 22:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-09-16 02:21:23
合計ジャッジ時間 3,175 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 71 ms
93,440 KB
testcase_04 AC 94 ms
103,424 KB
testcase_05 AC 70 ms
93,824 KB
testcase_06 AC 76 ms
99,328 KB
testcase_07 AC 86 ms
103,692 KB
testcase_08 AC 88 ms
101,888 KB
testcase_09 AC 65 ms
88,192 KB
testcase_10 AC 76 ms
99,584 KB
testcase_11 AC 85 ms
105,216 KB
testcase_12 AC 87 ms
105,856 KB
testcase_13 AC 66 ms
86,400 KB
testcase_14 AC 90 ms
105,600 KB
testcase_15 AC 62 ms
85,376 KB
testcase_16 AC 67 ms
89,984 KB
testcase_17 AC 98 ms
101,888 KB
testcase_18 AC 76 ms
100,864 KB
testcase_19 AC 88 ms
103,296 KB
testcase_20 AC 71 ms
95,616 KB
testcase_21 AC 58 ms
80,384 KB
testcase_22 AC 69 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
mod = 998244353

xor = 0
for x in a: xor ^= x
for x in b: xor ^= x

if xor:
  print(0)
  exit(0)

print(pow(1 << 20, N * M - (N + M - 1), mod))
0