結果

問題 No.1870 Xor Matrix
ユーザー hir355hir355
提出日時 2022-03-11 22:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-16 02:31:51
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 123 ms
98,668 KB
testcase_04 AC 95 ms
104,576 KB
testcase_05 AC 121 ms
99,200 KB
testcase_06 AC 104 ms
102,400 KB
testcase_07 AC 90 ms
105,216 KB
testcase_08 AC 149 ms
103,040 KB
testcase_09 AC 81 ms
93,952 KB
testcase_10 AC 134 ms
102,528 KB
testcase_11 AC 144 ms
106,840 KB
testcase_12 AC 93 ms
107,904 KB
testcase_13 AC 67 ms
88,832 KB
testcase_14 AC 97 ms
107,008 KB
testcase_15 AC 105 ms
91,904 KB
testcase_16 AC 115 ms
94,976 KB
testcase_17 AC 100 ms
103,680 KB
testcase_18 AC 139 ms
103,296 KB
testcase_19 AC 100 ms
105,472 KB
testcase_20 AC 89 ms
99,072 KB
testcase_21 AC 95 ms
87,808 KB
testcase_22 AC 125 ms
97,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = 1
for i in range(20):
    cx = 0
    cy = 0
    for x in a:
        if (x >> i) & 1:
            cx ^= 1
    for x in b:
        if (x >> i) & 1:
            cy ^= 1
    if cx != cy:
        print(0)
        exit(0)
    ans *= pow(2, (n - 1) * (m - 1), MOD)
print(ans % MOD)
0