結果

問題 No.1870 Xor Matrix
ユーザー shobonvipshobonvip
提出日時 2022-03-11 23:06:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 150,544 KB
最終ジャッジ日時 2024-09-16 03:28:43
合計ジャッジ時間 7,744 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 265 ms
115,076 KB
testcase_04 WA -
testcase_05 AC 260 ms
113,932 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 353 ms
136,040 KB
testcase_09 WA -
testcase_10 AC 305 ms
122,784 KB
testcase_11 AC 337 ms
135,720 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 209 ms
104,652 KB
testcase_16 AC 244 ms
110,664 KB
testcase_17 WA -
testcase_18 AC 320 ms
123,604 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 180 ms
98,456 KB
testcase_22 AC 258 ms
111,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
mod = 998244353

ar = [[0 for i in range(20)] for j in range(n)]
br = [[0 for i in range(20)] for j in range(m)]

for i in range(n):
	for j in range(20):
		ar[i][j] = (a[i] >> j) & 1

for i in range(m):
	for j in range(20):
		br[i][j] = (b[i] >> j) & 1

ans = 1
for i in range(20):
	atmp = 0
	btmp = 0
	for j in range(n):
		atmp += ar[j][i]
	for j in range(m):
		btmp += br[j][i]
	#print(atmp, btmp, n-atmp, m-btmp)
	if atmp == 0 or btmp ==0 or n-atmp == 0 or m-btmp == 0:
		if atmp % 2 != btmp % 2:
			ans = 0
	ans = ans * pow(2, n*m-n-m+1, mod) % mod
	
print(ans)
0