結果

問題 No.1870 Xor Matrix
ユーザー titiatitia
提出日時 2022-03-11 23:17:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,377 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,424 KB
最終ジャッジ日時 2024-09-16 03:42:30
合計ジャッジ時間 12,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 907 ms
23,068 KB
testcase_04 AC 156 ms
28,436 KB
testcase_05 AC 924 ms
26,892 KB
testcase_06 AC 288 ms
22,544 KB
testcase_07 AC 139 ms
24,920 KB
testcase_08 AC 1,377 ms
26,728 KB
testcase_09 AC 120 ms
22,320 KB
testcase_10 AC 1,061 ms
28,504 KB
testcase_11 AC 1,176 ms
29,144 KB
testcase_12 AC 137 ms
30,140 KB
testcase_13 AC 92 ms
20,580 KB
testcase_14 AC 150 ms
26,860 KB
testcase_15 AC 685 ms
20,136 KB
testcase_16 AC 822 ms
20,544 KB
testcase_17 AC 162 ms
30,424 KB
testcase_18 AC 1,206 ms
23,984 KB
testcase_19 AC 183 ms
27,068 KB
testcase_20 AC 139 ms
22,728 KB
testcase_21 AC 609 ms
19,932 KB
testcase_22 AC 891 ms
23,936 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

for i in range(30):
    ac=0
    bc=0

    for a in A:
        if a & (1<<i) != 0:
            ac+=1

    for b in B:
        if b & (1<<i) != 0:
            bc+=1

    if ac%2!=bc%2:
        print(0)
        exit()

ANS=pow(pow(2,(N-1)*(M-1),mod),20,mod)
print(ANS)
0