結果

問題 No.884 Eat and Add
ユーザー rlangevinrlangevin
提出日時 2023-08-30 12:20:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 88,360 KB
最終ジャッジ日時 2024-06-10 12:20:55
合計ジャッジ時間 1,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,368 KB
testcase_01 AC 33 ms
52,264 KB
testcase_02 AC 34 ms
52,476 KB
testcase_03 AC 69 ms
88,032 KB
testcase_04 AC 68 ms
87,956 KB
testcase_05 AC 66 ms
87,700 KB
testcase_06 AC 69 ms
88,360 KB
testcase_07 AC 52 ms
78,816 KB
testcase_08 AC 48 ms
73,676 KB
testcase_09 AC 56 ms
79,084 KB
testcase_10 AC 32 ms
52,212 KB
testcase_11 AC 32 ms
52,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(input())
inf = 10 ** 18
dp0 = [inf] * (len(N) + 1)
dp1 = [inf] * (len(N) + 1)
dp0[0], dp1[0] = 0, 1
for i, n in enumerate(N, 1):
    if n == "0":
        dp0[i] = min(dp0[i], dp0[i - 1])
        dp1[i] = min(dp1[i], dp1[i - 1] + 1, dp0[i - 1] + 1)
    else:
        dp0[i] = min(dp0[i], dp0[i - 1] + 1, dp1[i - 1] + 1)
        dp1[i] = min(dp1[i], dp1[i - 1])

print(dp0[-1])
0