結果

問題 No.1870 Xor Matrix
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-03-11 21:49:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,984 KB
最終ジャッジ日時 2024-09-16 02:02:27
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 158 ms
97,920 KB
testcase_04 AC 208 ms
101,760 KB
testcase_05 AC 160 ms
98,560 KB
testcase_06 AC 180 ms
101,504 KB
testcase_07 AC 192 ms
103,296 KB
testcase_08 AC 198 ms
101,504 KB
testcase_09 AC 150 ms
93,312 KB
testcase_10 AC 174 ms
101,376 KB
testcase_11 AC 193 ms
98,688 KB
testcase_12 AC 197 ms
105,984 KB
testcase_13 AC 137 ms
92,032 KB
testcase_14 AC 210 ms
103,552 KB
testcase_15 AC 141 ms
91,008 KB
testcase_16 AC 152 ms
94,720 KB
testcase_17 AC 220 ms
99,968 KB
testcase_18 AC 180 ms
101,888 KB
testcase_19 AC 203 ms
101,760 KB
testcase_20 AC 168 ms
98,048 KB
testcase_21 AC 120 ms
85,632 KB
testcase_22 AC 159 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

まぁ
Bitごとに解けばよい

1の個数の偶奇が与えられる

まず、不可の場合を考えよう
縦と横の1の個数の偶奇が違う
それ以外は、2^((n-1)*(m-1)) が出来そう

"""

import sys
from sys import stdin
import heapq

N,M = map(int,stdin.readline().split())

a = list(map(int,stdin.readline().split()))
b = list(map(int,stdin.readline().split()))

mod = 998244353

flag = True
for i in range(20):

    x = 0
    y = 0
    for j in a:
        if 2**i & j > 0:
            x ^= 1
    for j in b:
        if 2**i & j > 0:
            y ^= 1

    if x != y:
        flag = False

if flag:
    ans = pow( pow(2, (N-1)*(M-1) , mod ) ,20 , mod)
    print (ans)
else:
    print (0)
0