結果

問題 No.2219 Re:010
ユーザー HydruHydru
提出日時 2023-02-18 00:00:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-07-19 15:04:17
合計ジャッジ時間 3,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,192 KB
testcase_02 AC 39 ms
51,820 KB
testcase_03 AC 96 ms
87,808 KB
testcase_04 AC 55 ms
69,376 KB
testcase_05 AC 86 ms
84,992 KB
testcase_06 AC 64 ms
75,008 KB
testcase_07 AC 76 ms
80,384 KB
testcase_08 AC 92 ms
86,784 KB
testcase_09 AC 91 ms
86,400 KB
testcase_10 AC 81 ms
83,936 KB
testcase_11 AC 82 ms
81,664 KB
testcase_12 AC 80 ms
82,048 KB
testcase_13 AC 103 ms
89,852 KB
testcase_14 AC 101 ms
89,984 KB
testcase_15 AC 104 ms
89,600 KB
testcase_16 AC 103 ms
89,600 KB
testcase_17 AC 102 ms
89,984 KB
testcase_18 AC 68 ms
75,392 KB
testcase_19 AC 71 ms
76,672 KB
testcase_20 AC 99 ms
89,600 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 37 ms
52,352 KB
testcase_23 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

S=input()
len_S=len(S)

pow_2=[1]
for _ in range(len_S+1):
    pow_2.append(pow_2[-1]*2%mod)

D={"0":0,"1":1,"?":2}

cntr=[0,0,0]
cntl=[0,0,0]
for s in S:
    cntr[D[s]]+=1

ans=0
for s in S:
    cntr[D[s]]-=1
    if s!="0":
        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[D[s]]+=1

print(ans)
0