結果

問題 No.1070 Missing a space
ユーザー uni_pythonuni_python
提出日時 2020-06-16 22:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 285 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-07-03 11:59:59
合計ジャッジ時間 1,016 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,064 KB
testcase_01 AC 38 ms
53,556 KB
testcase_02 AC 36 ms
52,660 KB
testcase_03 AC 35 ms
53,176 KB
testcase_04 AC 35 ms
52,744 KB
testcase_05 AC 35 ms
53,072 KB
testcase_06 AC 35 ms
52,740 KB
testcase_07 AC 35 ms
52,692 KB
testcase_08 AC 35 ms
52,820 KB
testcase_09 AC 36 ms
52,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    C=input()
    
    ans=0
    for i in range(len(C)-1):
        if C[i+1]!="0":
            ans+=1
            
    print(ans)


main()
0