結果

問題 No.2219 Re:010
ユーザー HydruHydru
提出日時 2023-02-17 23:08:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,273 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 132,248 KB
最終ジャッジ日時 2024-07-19 14:20:10
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 153 ms
125,056 KB
testcase_04 AC 76 ms
77,952 KB
testcase_05 AC 128 ms
103,976 KB
testcase_06 AC 80 ms
81,920 KB
testcase_07 AC 101 ms
94,720 KB
testcase_08 AC 137 ms
119,296 KB
testcase_09 AC 138 ms
119,168 KB
testcase_10 AC 116 ms
97,536 KB
testcase_11 AC 110 ms
100,608 KB
testcase_12 AC 112 ms
101,120 KB
testcase_13 AC 160 ms
132,092 KB
testcase_14 AC 159 ms
131,992 KB
testcase_15 AC 158 ms
131,456 KB
testcase_16 AC 160 ms
132,248 KB
testcase_17 AC 161 ms
131,840 KB
testcase_18 AC 120 ms
121,600 KB
testcase_19 AC 121 ms
122,624 KB
testcase_20 AC 148 ms
131,584 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 41 ms
52,480 KB
testcase_23 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

class combination():
    def __init__(self,n,mod):
    
        self.mod=mod
        self.fact = [1,1] # x!
        self.factinv = [1,1] # (x!)^(-1)
        inv = [0,1]
        for i in range(2,n+1):
            self.fact.append((self.fact[-1]*i)%mod)
            inv.append((-inv[mod%i]*(mod//i))%mod)
            self.factinv.append((self.factinv[-1]*inv[-1])%mod)

    def cmb(self,n,r):
        r=min(r,n-r)
        return self.fact[n]*self.factinv[r]*self.factinv[n-r]%self.mod

S=input()
cntr=[0,0,0]
for s in S:
    if s=="0":
        cntr[0]+=1
    elif s=="1":
        cntr[1]+=1
    else:
        cntr[2]+=1
cntl=[0,0,0]

C=combination(len(S)+1,mod)
pow_2=[1]
for _ in range(len(S)+1):
    pow_2.append(pow_2[-1]*2%mod)

ans=0
for s in S:
    if s=="0":
        cntr[0]-=1
        cntl[0]+=1
        continue
    if s=="1":
        cntr[1]-=1
        x=cntl[2]
        y=cntr[2]
        ans+=(cntl[0]*pow_2[x]+x*pow_2[max(0,x-1)])*(cntr[0]*pow_2[y]+y*pow_2[max(0,y-1)])
        ans%=mod
        cntl[1]+=1
        continue
    if s=="?":
        cntr[2]-=1
        x=cntl[2]
        y=cntr[2]
        ans+=(cntl[0]*pow_2[x]+x*pow_2[max(0,x-1)])*(cntr[0]*pow_2[y]+y*pow_2[max(0,y-1)])
        ans%=mod
        cntl[2]+=1
        continue

print(ans)
0