結果

問題 No.1870 Xor Matrix
ユーザー horitaka1999horitaka1999
提出日時 2022-03-11 23:50:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-16 04:12:26
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 75 ms
95,232 KB
testcase_04 AC 95 ms
104,832 KB
testcase_05 AC 77 ms
94,976 KB
testcase_06 AC 76 ms
100,480 KB
testcase_07 AC 85 ms
104,960 KB
testcase_08 AC 90 ms
103,296 KB
testcase_09 AC 68 ms
89,344 KB
testcase_10 AC 77 ms
100,864 KB
testcase_11 AC 85 ms
106,368 KB
testcase_12 AC 88 ms
107,520 KB
testcase_13 AC 64 ms
87,296 KB
testcase_14 AC 98 ms
107,008 KB
testcase_15 AC 65 ms
86,272 KB
testcase_16 AC 67 ms
91,392 KB
testcase_17 AC 96 ms
104,192 KB
testcase_18 AC 80 ms
102,400 KB
testcase_19 AC 89 ms
105,424 KB
testcase_20 AC 74 ms
96,640 KB
testcase_21 AC 61 ms
81,152 KB
testcase_22 AC 72 ms
94,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
s1 = A[0]
s2 = B[0]
mod = 998244353
for i in range(1,M):
    s1 ^= B[i]
for i in range(1,N):
    s2 ^= A[i]
if s1 == s2:
    tmp = pow(2,(N-1) * (M-1),mod)
    ans = pow(tmp,20,mod)
    print(ans)
else:
    print(0)
0