結果

問題 No.2219 Re:010
ユーザー 👑 p-adicp-adic
提出日時 2023-06-01 10:54:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-08 21:31:16
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 326 ms
10,880 KB
testcase_04 AC 63 ms
10,624 KB
testcase_05 AC 266 ms
11,008 KB
testcase_06 AC 92 ms
10,624 KB
testcase_07 AC 173 ms
10,624 KB
testcase_08 AC 304 ms
11,008 KB
testcase_09 AC 289 ms
10,880 KB
testcase_10 AC 227 ms
10,752 KB
testcase_11 AC 196 ms
10,752 KB
testcase_12 AC 204 ms
10,752 KB
testcase_13 AC 364 ms
11,136 KB
testcase_14 AC 361 ms
11,008 KB
testcase_15 AC 375 ms
11,136 KB
testcase_16 AC 381 ms
11,008 KB
testcase_17 AC 366 ms
11,008 KB
testcase_18 AC 138 ms
11,008 KB
testcase_19 AC 310 ms
11,136 KB
testcase_20 AC 464 ms
10,880 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 30 ms
10,496 KB
testcase_23 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
P=998244353
Q=(P+1)//2
Z=H=z=h=a=0
for s in S:
	Z+=s<'1'
	H+=s>'1'
p=1
R=q=pow(2,H,P)
for s in S:
	b=s>'1'
	if s<'1':z+=1
	else:a,h,p,q=a+(z+h*Q)*R*[1,Q][b]*((Z-z)+(H-h-b)*Q)%P,h+b,p*(1+b)%P,q*[1,Q][b]%P
print(a%P)
0