結果

問題 No.884 Eat and Add
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-09 22:40:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 284 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 94,664 KB
最終ジャッジ日時 2024-07-17 03:35:21
合計ジャッジ時間 1,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,680 KB
testcase_01 AC 38 ms
52,560 KB
testcase_02 AC 36 ms
52,212 KB
testcase_03 AC 74 ms
94,388 KB
testcase_04 AC 76 ms
93,912 KB
testcase_05 AC 74 ms
94,452 KB
testcase_06 AC 73 ms
94,664 KB
testcase_07 AC 68 ms
93,848 KB
testcase_08 AC 68 ms
93,944 KB
testcase_09 AC 72 ms
94,548 KB
testcase_10 AC 36 ms
53,632 KB
testcase_11 AC 37 ms
53,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = list(map(int,input()))[::-1] + [0]
inf = 10**10
dp = [0,inf]

for b in n:
    ndp = [inf,inf]
    if b == 0:
        ndp[0] = min(dp[0],dp[1]+1)
        ndp[1] = dp[1]+1
    else:
        ndp[0] = dp[0]+1
        ndp[1] = min(dp[0]+1,dp[1])
    dp = ndp
print(min(dp[0],dp[1]+1))
0