結果

問題 No.884 Eat and Add
ユーザー kohei2019kohei2019
提出日時 2022-05-06 12:15:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 412 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-07-05 14:14:29
合計ジャッジ時間 1,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 65 ms
85,248 KB
testcase_04 AC 67 ms
85,760 KB
testcase_05 AC 67 ms
85,760 KB
testcase_06 AC 66 ms
85,248 KB
testcase_07 AC 60 ms
83,072 KB
testcase_08 AC 61 ms
83,200 KB
testcase_09 AC 62 ms
84,096 KB
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int,list(input())))
N.reverse()
NN = len(N)
ans = 0
cnt = 0
for i in range(NN):
    if N[i] == 1:
        cnt += 1
    else:
        if cnt == 0:
            continue
        elif cnt == 1:
            cnt = 0
            ans += 1
        else:
            cnt = 1
            ans += 1

if cnt == 0:
    pass
elif cnt == 1:
    cnt = 0
    ans += 1
else:
    cnt = 1
    ans += 2
print(ans)
        
0