結果

問題 No.2219 Re:010
ユーザー ikomaikoma
提出日時 2023-02-17 23:44:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 353 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 84,776 KB
最終ジャッジ日時 2024-07-19 14:53:52
合計ジャッジ時間 14,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,880 KB
testcase_01 AC 37 ms
52,512 KB
testcase_02 AC 38 ms
52,432 KB
testcase_03 TLE -
testcase_04 AC 87 ms
77,152 KB
testcase_05 AC 1,424 ms
82,068 KB
testcase_06 AC 150 ms
77,616 KB
testcase_07 AC 562 ms
79,484 KB
testcase_08 AC 1,971 ms
83,680 KB
testcase_09 AC 1,841 ms
83,260 KB
testcase_10 AC 1,100 ms
81,200 KB
testcase_11 AC 782 ms
80,320 KB
testcase_12 AC 809 ms
80,632 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
MOD=998244353
S=list(input().strip())
dp = [0]*3
x=1
for s in S:
    if s=="0":
        dp[2]+=dp[1]
        dp[0]+=x
    elif s=="1":
        dp[1]+=dp[0]
    else:
        dp[2]=dp[2]*2+dp[1]
        dp[1]=dp[1]*2+dp[0]
        dp[0]=dp[0]*2+x
        x*=2
    for i in range(3):
        dp[i]%=MOD

print(dp[-1])
0