結果

問題 No.2219 Re:010
ユーザー vwxyzvwxyz
提出日時 2024-12-19 23:19:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 76,692 KB
最終ジャッジ日時 2024-12-19 23:19:33
合計ジャッジ時間 3,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,216 KB
testcase_01 AC 36 ms
53,116 KB
testcase_02 AC 35 ms
52,420 KB
testcase_03 AC 73 ms
76,500 KB
testcase_04 AC 55 ms
70,268 KB
testcase_05 AC 81 ms
76,220 KB
testcase_06 AC 55 ms
73,324 KB
testcase_07 AC 67 ms
76,340 KB
testcase_08 AC 72 ms
76,132 KB
testcase_09 AC 80 ms
76,316 KB
testcase_10 AC 75 ms
76,312 KB
testcase_11 AC 75 ms
76,048 KB
testcase_12 AC 65 ms
75,924 KB
testcase_13 AC 75 ms
76,412 KB
testcase_14 AC 78 ms
76,672 KB
testcase_15 AC 78 ms
76,284 KB
testcase_16 AC 76 ms
76,692 KB
testcase_17 AC 83 ms
76,208 KB
testcase_18 AC 72 ms
76,312 KB
testcase_19 AC 78 ms
76,404 KB
testcase_20 AC 73 ms
76,324 KB
testcase_21 AC 36 ms
54,376 KB
testcase_22 AC 36 ms
52,068 KB
testcase_23 AC 36 ms
52,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
mod=998244353
dp=[0]*4
dp[0]=1
for s in S:
    prev=dp
    dp=[0]*4
    if s in "0?":
        for i in range(4):
            dp[i]+=prev[i]
        dp[1]+=prev[0]
        dp[3]+=prev[2]
    if s in "1?":
        for i in range(4):
            dp[i]+=prev[i]
        dp[2]+=prev[1]
    for i in range(4):
        dp[i]%=mod
ans=dp[3]
print(ans)
0