結果

問題 No.1870 Xor Matrix
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-03-11 23:46:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-16 04:07:55
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 72 ms
94,080 KB
testcase_04 AC 92 ms
104,704 KB
testcase_05 AC 72 ms
93,568 KB
testcase_06 AC 76 ms
99,840 KB
testcase_07 AC 93 ms
104,960 KB
testcase_08 AC 89 ms
102,784 KB
testcase_09 AC 69 ms
88,832 KB
testcase_10 AC 78 ms
100,224 KB
testcase_11 AC 87 ms
106,368 KB
testcase_12 AC 90 ms
107,776 KB
testcase_13 AC 64 ms
86,656 KB
testcase_14 AC 91 ms
106,880 KB
testcase_15 AC 61 ms
85,376 KB
testcase_16 AC 67 ms
90,752 KB
testcase_17 AC 94 ms
104,320 KB
testcase_18 AC 77 ms
101,248 KB
testcase_19 AC 88 ms
104,960 KB
testcase_20 AC 74 ms
95,744 KB
testcase_21 AC 60 ms
80,896 KB
testcase_22 AC 71 ms
93,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
def cul(l):
    res = 0
    for i in range(len(l)):
        res ^= l[i]
    return res
if cul(a) == cul(b):
    mod = 998244353
    print(pow(2,(m-1)*(n-1),mod)**20 % mod)
else:
    print(0)
0