結果

問題 No.1870 Xor Matrix
ユーザー ikomaikoma
提出日時 2022-03-11 23:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 128,336 KB
最終ジャッジ日時 2024-09-16 03:48:10
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 115 ms
120,064 KB
testcase_04 AC 94 ms
103,552 KB
testcase_05 AC 106 ms
119,808 KB
testcase_06 AC 92 ms
104,516 KB
testcase_07 AC 106 ms
104,320 KB
testcase_08 AC 129 ms
126,336 KB
testcase_09 AC 75 ms
91,648 KB
testcase_10 AC 107 ms
105,624 KB
testcase_11 AC 126 ms
128,336 KB
testcase_12 AC 89 ms
106,240 KB
testcase_13 AC 67 ms
87,936 KB
testcase_14 AC 91 ms
105,088 KB
testcase_15 AC 92 ms
106,496 KB
testcase_16 AC 102 ms
114,560 KB
testcase_17 AC 95 ms
101,960 KB
testcase_18 AC 109 ms
108,928 KB
testcase_19 AC 90 ms
103,936 KB
testcase_20 AC 84 ms
99,328 KB
testcase_21 AC 83 ms
98,560 KB
testcase_22 AC 106 ms
118,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ONLINE_JUDGE = sys.argv[-1] == 'ONLINE_JUDGE'
if not ONLINE_JUDGE and len(sys.argv)>1 and sys.argv[1]!="<":
    sys.stdin = open(sys.argv[1], "r", encoding="utf-8")

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
if "pypyjit" in sys.builtin_module_names:
    import pypyjit
    pypyjit.set_param("max_unroll_recursion=-1")


N,M=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
MOD = 998244353
ans = 0
for i in range(20):
    n=sum([(a>>i)&1 for a in A])
    m=sum([(b>>i)&1 for b in B])
    if (n&1)!=(m&1):
        print(0)
        exit()
print(pow(pow(pow(2,20,MOD), N-1,MOD),M-1,MOD))
0