結果

問題 No.1870 Xor Matrix
ユーザー ytqm3ytqm3
提出日時 2021-11-22 21:39:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 247 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,492 KB
最終ジャッジ日時 2024-09-16 00:41:36
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 163 ms
27,324 KB
testcase_05 WA -
testcase_06 AC 127 ms
22,536 KB
testcase_07 AC 147 ms
24,144 KB
testcase_08 WA -
testcase_09 AC 104 ms
22,140 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 147 ms
30,248 KB
testcase_13 AC 98 ms
20,440 KB
testcase_14 AC 161 ms
26,808 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 173 ms
30,492 KB
testcase_18 WA -
testcase_19 AC 152 ms
26,924 KB
testcase_20 AC 117 ms
22,840 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 j in range(M):
  C ^= B[j]
if C == 0:
  print(pow(2, (N-1) * (M-1) * 60, 998244353))
else:
  print(0)
0