結果
| 問題 | No.1870 Xor Matrix |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-12 14:30:52 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 71 ms / 2,000 ms |
| コード長 | 260 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 85,760 KB |
| 実行使用メモリ | 120,576 KB |
| 最終ジャッジ日時 | 2026-04-05 23:42:02 |
| 合計ジャッジ時間 | 2,370 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
n,m = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ca,cb = 0,0
for a in A:
ca ^= a
for b in B:
cb ^= b
if ca != cb:
print(0)
exit()
mod = 998244353
ans = pow(1<<20,(n-1)*(m-1),mod)
print(ans)