結果

問題 No.884 Eat and Add
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-13 09:31:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 383 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-04-28 03:33:57
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 75 ms
87,040 KB
testcase_04 AC 75 ms
86,528 KB
testcase_05 AC 72 ms
86,656 KB
testcase_06 AC 73 ms
86,656 KB
testcase_07 AC 65 ms
86,656 KB
testcase_08 AC 66 ms
86,528 KB
testcase_09 AC 69 ms
86,784 KB
testcase_10 AC 34 ms
51,584 KB
testcase_11 AC 34 ms
52,480 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