結果

問題 No.2219 Re:010
ユーザー hiryuNhiryuN
提出日時 2023-02-17 21:46:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-07-19 12:58:14
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 35 ms
51,456 KB
testcase_02 AC 36 ms
51,328 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
57,984 KB
testcase_19 AC 42 ms
58,496 KB
testcase_20 WA -
testcase_21 AC 34 ms
51,328 KB
testcase_22 AC 35 ms
51,328 KB
testcase_23 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
M=998244353
key=pow(2,s.count("?")-3,M)
nex=s.count("?")+s.count("0")*2

pre=0
ans=0
for i in range(len(s)):
    if s[i]=="0":
        pre+=2
        nex-=2
    elif s[i]=="?":
        nex-=1
        ans+=(key*pre*nex)%M
        pre+=1
    else:
        ans+=(key*2*pre*nex)%M
print(ans)
0