結果

問題 No.1870 Xor Matrix
ユーザー NatsubiSoganNatsubiSogan
提出日時 2022-03-11 21:45:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,368 KB
最終ジャッジ日時 2024-09-16 01:58:26
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 113 ms
23,308 KB
testcase_04 AC 170 ms
28,296 KB
testcase_05 AC 114 ms
27,216 KB
testcase_06 AC 125 ms
22,400 KB
testcase_07 AC 142 ms
24,908 KB
testcase_08 AC 147 ms
26,852 KB
testcase_09 AC 101 ms
22,000 KB
testcase_10 AC 130 ms
28,360 KB
testcase_11 AC 139 ms
29,260 KB
testcase_12 AC 151 ms
29,996 KB
testcase_13 AC 99 ms
20,440 KB
testcase_14 AC 162 ms
26,724 KB
testcase_15 AC 93 ms
19,976 KB
testcase_16 AC 106 ms
20,268 KB
testcase_17 AC 174 ms
30,368 KB
testcase_18 AC 131 ms
23,844 KB
testcase_19 AC 151 ms
27,784 KB
testcase_20 AC 119 ms
22,840 KB
testcase_21 AC 82 ms
19,788 KB
testcase_22 AC 114 ms
25,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#技術室奥#5 Day2 で既出です。ごめんなさい https://yukicoder.me/problems/no/1210

n, m = map(int, input().split())
x = 20
a = list(map(int, input().split()))
b = list(map(int, input().split()))
mod = 998244353
ax, bx = 0, 0
for i in range(n):
    ax ^= a[i]
for i in range(m):
    bx ^= b[i]
if ax != bx:
    print(0)
else:
    print(pow(pow(2, x, mod), (n - 1) * (m - 1), mod))
0