結果

問題 No.884 Eat and Add
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-13 09:31:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 1,000 ms
コード長 383 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-11-16 12:49:58
合計ジャッジ時間 2,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 89 ms
86,656 KB
testcase_04 AC 86 ms
86,656 KB
testcase_05 AC 90 ms
86,272 KB
testcase_06 AC 90 ms
86,784 KB
testcase_07 AC 80 ms
86,656 KB
testcase_08 AC 80 ms
86,656 KB
testcase_09 AC 81 ms
86,656 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = str(input())
INF = 10**18
n = list(n)
n.reverse()
n += ['0']
dp = [INF]*2
dp[0] = 0
for c in n:
    nx = [INF]*2
    if c == '0':
        nx[0] = min(nx[0], dp[0])
        nx[0] = min(nx[0], dp[1]+1)
        nx[1] = min(nx[1], dp[1]+1)
    else:
        nx[0] = min(nx[0], dp[0]+1)
        nx[1] = min(nx[0], dp[0]+1)
        nx[1] = min(nx[1], dp[1])
    dp = nx
print(min(dp))
0