結果

問題 No.884 Eat and Add
ユーザー lloyzlloyz
提出日時 2022-09-05 21:38:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 373 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,124 KB
最終ジャッジ日時 2024-04-30 23:47:01
合計ジャッジ時間 1,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 123 ms
14,124 KB
testcase_04 AC 118 ms
14,000 KB
testcase_05 AC 101 ms
14,124 KB
testcase_06 AC 118 ms
14,124 KB
testcase_07 AC 77 ms
13,992 KB
testcase_08 AC 107 ms
13,996 KB
testcase_09 AC 144 ms
14,124 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = list(map(int, list(input())))

L.reverse()
L.append(0)
n = len(L)
ans = 0
for i in range(n):
    if L[i] == 1:
        if i == n - 1:
            ans += 1
        elif L[i + 1] == 0:
            ans += 1
            L[i] = 0
        else:
            while L[i] == 1:
                L[i] = 0
                i += 1
            L[i] = 1
            ans += 1
print(ans)
0