結果

問題 No.2219 Re:010
ユーザー 👑 KazunKazun
提出日時 2022-01-27 21:44:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 77,632 KB
最終ジャッジ日時 2024-06-07 19:15:31
合計ジャッジ時間 3,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,184 KB
testcase_01 AC 38 ms
53,808 KB
testcase_02 AC 38 ms
52,304 KB
testcase_03 AC 81 ms
77,220 KB
testcase_04 AC 63 ms
75,896 KB
testcase_05 AC 80 ms
77,100 KB
testcase_06 AC 64 ms
75,952 KB
testcase_07 AC 70 ms
76,132 KB
testcase_08 AC 79 ms
76,980 KB
testcase_09 AC 79 ms
77,240 KB
testcase_10 AC 74 ms
76,684 KB
testcase_11 AC 72 ms
76,084 KB
testcase_12 AC 72 ms
76,000 KB
testcase_13 AC 86 ms
77,316 KB
testcase_14 AC 84 ms
77,632 KB
testcase_15 AC 85 ms
77,080 KB
testcase_16 AC 85 ms
77,508 KB
testcase_17 AC 83 ms
77,576 KB
testcase_18 AC 48 ms
61,236 KB
testcase_19 AC 78 ms
77,568 KB
testcase_20 AC 79 ms
77,220 KB
testcase_21 AC 38 ms
52,768 KB
testcase_22 AC 39 ms
53,216 KB
testcase_23 AC 38 ms
52,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mod_product(*X):
    y=1
    for x in X:
        y*=x; y%=Mod
    return y

S=input()

a=b=0
c=S.count("0"); d=S.count("?")

Mod=998244353

TWO=[1]*(len(S)+1)
for i in range(1,len(S)+1):
    TWO[i]=(2*TWO[i-1])%Mod

four_inv=pow(4,Mod-2,Mod)

Ans=0
for s in S:
    if s=="0":
        c-=1
    elif s=="?":
        d-=1

    if s!="0":
        Ans+=mod_product(2*a+b,2*c+d,TWO[b+d])
        Ans%=Mod

    if s=="0":
        a+=1
    elif s=="?":
        b+=1

Ans*=four_inv; Ans%=Mod

print(Ans)
0