結果

問題 No.1870 Xor Matrix
ユーザー tassei903tassei903
提出日時 2022-03-11 21:53:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 107,988 KB
最終ジャッジ日時 2024-09-16 02:06:01
合計ジャッジ時間 3,361 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 73 ms
95,104 KB
testcase_04 AC 88 ms
104,448 KB
testcase_05 AC 72 ms
94,592 KB
testcase_06 AC 77 ms
101,248 KB
testcase_07 AC 87 ms
105,216 KB
testcase_08 AC 89 ms
103,424 KB
testcase_09 AC 67 ms
89,600 KB
testcase_10 AC 81 ms
102,784 KB
testcase_11 AC 87 ms
100,224 KB
testcase_12 AC 88 ms
107,988 KB
testcase_13 AC 64 ms
87,552 KB
testcase_14 AC 93 ms
106,420 KB
testcase_15 AC 63 ms
86,528 KB
testcase_16 AC 66 ms
91,136 KB
testcase_17 AC 96 ms
103,424 KB
testcase_18 AC 79 ms
102,400 KB
testcase_19 AC 90 ms
104,960 KB
testcase_20 AC 73 ms
96,512 KB
testcase_21 AC 60 ms
81,920 KB
testcase_22 AC 82 ms
94,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")

#######################################################################
n,m = na()
A = na()
B = na()
k = 30
sa = 0
sb = 0
for i in range(n):
    sa ^= A[i]
for j in range(m):
    sb ^= B[j]

if sa!=sb:
    print(0)
    exit()
mod = 998244353
print(pow(2**20,(n-1)*(m-1),mod))
0