結果

問題 No.1870 Xor Matrix
ユーザー 👑 KazunKazun
提出日時 2022-03-11 21:34:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-16 01:41:49
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 72 ms
93,696 KB
testcase_04 AC 96 ms
104,960 KB
testcase_05 AC 73 ms
93,696 KB
testcase_06 AC 77 ms
100,224 KB
testcase_07 AC 87 ms
105,088 KB
testcase_08 AC 89 ms
103,196 KB
testcase_09 AC 68 ms
88,192 KB
testcase_10 AC 79 ms
100,608 KB
testcase_11 AC 89 ms
106,240 KB
testcase_12 AC 89 ms
107,904 KB
testcase_13 AC 69 ms
86,400 KB
testcase_14 AC 93 ms
106,880 KB
testcase_15 AC 65 ms
85,760 KB
testcase_16 AC 69 ms
89,856 KB
testcase_17 AC 97 ms
103,848 KB
testcase_18 AC 79 ms
101,372 KB
testcase_19 AC 89 ms
105,344 KB
testcase_20 AC 73 ms
95,616 KB
testcase_21 AC 60 ms
80,896 KB
testcase_22 AC 71 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def xor(A):
    x=0
    for a in A:
        x^=a
    return x

def solve(N,M,A,B):
    if xor(A)!=xor(B):
        return 0

    alpha=2**20
    return pow(alpha,(N-1)*(M-1),Mod)

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

Mod=998244353

print(solve(N,M,A,B))
0