結果

問題 No.2219 Re:010
ユーザー ikomaikoma
提出日時 2023-02-17 23:33:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 872 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-07-19 14:45:15
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 239 ms
83,328 KB
testcase_04 WA -
testcase_05 AC 210 ms
81,792 KB
testcase_06 AC 96 ms
70,656 KB
testcase_07 AC 153 ms
79,360 KB
testcase_08 AC 237 ms
83,200 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 169 ms
80,384 KB
testcase_13 AC 278 ms
84,992 KB
testcase_14 WA -
testcase_15 AC 280 ms
84,896 KB
testcase_16 WA -
testcase_17 AC 277 ms
84,480 KB
testcase_18 AC 77 ms
84,608 KB
testcase_19 AC 77 ms
84,992 KB
testcase_20 WA -
testcase_21 AC 43 ms
53,248 KB
testcase_22 AC 42 ms
53,760 KB
testcase_23 AC 43 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import Counter
S=list(input().strip())
MOD=998244353
cnt = Counter(S)
cnt0R = cnt["0"]
cntqR=cnt["?"]
cnt0L=0
cntqL=0
ans=0
for s in S:
    if s=="1":
        cntq=cntqL+cntqR
        ans += cnt0L*cnt0R%MOD*pow(2,cntq,MOD)%MOD
        if cntq>0:
            ans += cnt0L*cntqR%MOD*pow(2,cntq-1,MOD)%MOD
            ans += cntqL*cnt0R%MOD*pow(2,cntq-1,MOD)%MOD
        if cntq>1:ans += cntqL*cntqR%MOD*pow(2,cntq-2,MOD)%MOD
        ans%=MOD
    elif s=="0":
        cnt0L+=1
        cnt0R-=1
    else:
        cntqR-=1
        cntq=cntqL+cntqR
        ans += cnt0L*cnt0R%MOD*pow(2,cntq,MOD)%MOD
        if cntq>0:
            ans += cnt0L*cntqR%MOD*pow(2,cntq-1,MOD)%MOD
            ans += cntqL*cnt0R%MOD*pow(2,cntq-1,MOD)%MOD
        if cntq>1:ans += cntqL*cntqR%MOD*pow(2,cntq-2,MOD)%MOD
        cntqL+=1
print(ans)
0