結果
問題 | No.1070 Missing a space |
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
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()