結果

問題 No.1870 Xor Matrix
ユーザー ああいいああいい
提出日時 2022-03-11 21:32:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-09-16 01:38:10
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 75 ms
94,796 KB
testcase_04 AC 96 ms
104,960 KB
testcase_05 AC 84 ms
94,336 KB
testcase_06 AC 90 ms
100,480 KB
testcase_07 AC 100 ms
104,960 KB
testcase_08 AC 102 ms
103,040 KB
testcase_09 AC 79 ms
89,216 KB
testcase_10 AC 84 ms
100,864 KB
testcase_11 AC 91 ms
106,804 KB
testcase_12 AC 103 ms
107,648 KB
testcase_13 AC 78 ms
87,168 KB
testcase_14 AC 109 ms
107,008 KB
testcase_15 AC 77 ms
86,272 KB
testcase_16 AC 82 ms
90,752 KB
testcase_17 AC 112 ms
103,808 KB
testcase_18 AC 96 ms
101,632 KB
testcase_19 AC 108 ms
105,216 KB
testcase_20 AC 92 ms
96,512 KB
testcase_21 AC 73 ms
81,152 KB
testcase_22 AC 87 ms
93,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

A = list(map(int,input().split()))
B = list(map(int,input().split()))
S = 0
T = 0
for a in A:
    S ^= a
for b in B:
    T ^= b
import sys
if S != T:
    print(0)
    exit()

P = 998244353
C = pow(2,20,P)
ans = pow(C,(N-1)*(M-1),P)
print(ans)
0