結果

問題 No.884 Eat and Add
ユーザー kawap23kawap23
提出日時 2019-09-13 22:58:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 496 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,892 KB
最終ジャッジ日時 2024-07-04 10:14:51
合計ジャッジ時間 1,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 106 ms
13,892 KB
testcase_04 AC 107 ms
13,884 KB
testcase_05 AC 97 ms
13,880 KB
testcase_06 AC 106 ms
13,752 KB
testcase_07 AC 65 ms
13,880 KB
testcase_08 AC 95 ms
13,880 KB
testcase_09 AC 123 ms
13,880 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = ['0'] + list(input())
# print (N)
tmp1= len(N) - 1
ans = 0
while tmp1 >= 1:
    if N[tmp1] == '0':
        tmp1 -= 1
    elif N[tmp1] == '1' and N[tmp1 - 1] == '1': 
        while N[tmp1 - 1] == '1':
            N[tmp1] = '0'
            N[tmp1 - 1] = '0'
            tmp1 -= 1
        N[tmp1 - 1] = '1'
        tmp1 -= 1
        ans += 1
    elif N[tmp1] == '1' and N[tmp1 - 1] == '0':
        ans += 1
        tmp1 -= 1
    # print (N)

if N[0] == '1':
    ans += 1
print (ans)

# print (N)
0