結果

問題 No.884 Eat and Add
ユーザー stngstng
提出日時 2022-08-07 16:16:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 62,664 KB
最終ジャッジ日時 2024-09-17 09:32:37
合計ジャッジ時間 1,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,852 KB
testcase_01 AC 38 ms
52,940 KB
testcase_02 AC 37 ms
53,056 KB
testcase_03 AC 49 ms
61,800 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 49 ms
61,496 KB
testcase_07 AC 45 ms
59,348 KB
testcase_08 AC 43 ms
59,600 KB
testcase_09 AC 44 ms
59,344 KB
testcase_10 AC 38 ms
52,368 KB
testcase_11 AC 38 ms
51,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
ans = 0
ln = len(n)
oc = 0
zc = 0
for i in range(ln-1,-1,-1):
    if n[i] == "1":
        oc += 1
    else:
        if i != ln-1 and n[i+1] == "0":
            ans += min(oc,zc+1)
            zc = 0
            oc = 0
        else:
            zc += 1
    #print(i,ans,zc,oc)
#print(oc,zc)
#print(ans)
ans += min(oc,zc+2)
print(ans)
0