結果

問題 No.1958 Bit Game
ユーザー prussian_coderprussian_coder
提出日時 2022-05-27 22:40:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 176,880 KB
最終ジャッジ日時 2024-09-20 16:11:33
合計ジャッジ時間 8,064 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
176,752 KB
testcase_01 AC 266 ms
176,364 KB
testcase_02 AC 265 ms
176,620 KB
testcase_03 AC 265 ms
176,616 KB
testcase_04 AC 261 ms
176,880 KB
testcase_05 AC 264 ms
176,624 KB
testcase_06 AC 263 ms
176,668 KB
testcase_07 AC 270 ms
176,876 KB
testcase_08 AC 271 ms
176,628 KB
testcase_09 AC 270 ms
176,616 KB
testcase_10 AC 111 ms
96,128 KB
testcase_11 AC 159 ms
112,268 KB
testcase_12 AC 176 ms
139,792 KB
testcase_13 AC 181 ms
126,828 KB
testcase_14 AC 165 ms
111,656 KB
testcase_15 AC 181 ms
148,004 KB
testcase_16 AC 146 ms
122,064 KB
testcase_17 AC 234 ms
161,336 KB
testcase_18 AC 218 ms
156,252 KB
testcase_19 AC 161 ms
129,240 KB
testcase_20 AC 177 ms
111,876 KB
testcase_21 AC 201 ms
150,076 KB
testcase_22 AC 122 ms
94,208 KB
testcase_23 AC 120 ms
100,952 KB
testcase_24 AC 210 ms
147,844 KB
testcase_25 AC 136 ms
105,316 KB
testcase_26 AC 174 ms
111,852 KB
testcase_27 AC 165 ms
140,584 KB
testcase_28 AC 199 ms
134,152 KB
testcase_29 AC 125 ms
107,392 KB
testcase_30 AC 36 ms
52,096 KB
testcase_31 AC 35 ms
51,840 KB
testcase_32 AC 43 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int,input().split())
ans=0
mod=998244353
A=[int(x) for x in input().split()]
B=[int(x) for x in input().split()]
for i in range(18):
	a=0
	b=1
	p=sum([(A[j]>>i)&1 for j in range(X)])
	q=sum([(B[j]>>i)&1 for j in range(Y)])
	for _  in range(N):
		a,b=(a*X+b*p)%mod,b*(X-p)%mod
		a,b=a*q%mod,(a*(Y-q)+b*Y)%mod
	ans+=(1<<i)*a
	ans%=mod
print(ans)	
0