結果

問題 No.884 Eat and Add
ユーザー tjaketjake
提出日時 2019-09-13 23:47:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 729 ms / 1,000 ms
コード長 567 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 278,368 KB
最終ジャッジ日時 2024-07-04 10:38:28
合計ジャッジ時間 5,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 725 ms
277,608 KB
testcase_04 AC 711 ms
277,616 KB
testcase_05 AC 703 ms
277,524 KB
testcase_06 AC 715 ms
278,004 KB
testcase_07 AC 396 ms
270,520 KB
testcase_08 AC 705 ms
278,368 KB
testcase_09 AC 729 ms
277,848 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N = list(input())
ans = 0
cnt = 0
N.reverse()
n = len(N)
memo = [[-1, -1] for i in range(n)]
def dfs(i, b):
    if i == n:
        return b
    if memo[i][b] != -1:
        return memo[i][b]
    r = 10**6
    if N[i] == '1':
        if b:
            r = min(r, dfs(i+1, 1))
        else:
            r = min(r, min(dfs(i+1, 0), dfs(i+1, 1)) + 1)
    else:
        if b:
            r = min(r, min(dfs(i+1, 0), dfs(i+1, 1)) + 1)
        else:
            r = min(r, dfs(i+1, 0))
    memo[i][b] = r
    return r
print(dfs(0, 0))
0