結果

問題 No.884 Eat and Add
ユーザー momotaros300momotaros300
提出日時 2019-09-13 23:23:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 302 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-07-04 10:27:37
合計ジャッジ時間 1,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 132 ms
15,356 KB
testcase_04 AC 132 ms
15,228 KB
testcase_05 AC 128 ms
15,232 KB
testcase_06 AC 137 ms
15,360 KB
testcase_07 AC 109 ms
15,228 KB
testcase_08 AC 125 ms
15,232 KB
testcase_09 AC 152 ms
15,232 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=list(map(int,list(input())))
n2=n[::-1]+[0]
n3=[]
# print(n,n2)
count=0
for i in range(len(n2)-1):
    if n2[i]==2:
        n2[i]=0
        n2[i+1]+=1
    elif n2[i]==1 and n2[i+1]==1:
        n2[i],n2[i+1]=0,2
        count+=1
    else:pass
for i in n2:
    if i==1:
        count+=1
print(count)


0