結果

問題 No.1070 Missing a space
ユーザー StrorkisStrorkis
提出日時 2020-06-05 21:28:39
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 299 bytes
コンパイル時間 12,625 ms
コンパイル使用メモリ 401,664 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-17 13:23:58
合計ジャッジ時間 13,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let c = {
        let mut buf = String::new();
        std::io::stdin().read_line(&mut buf).unwrap();
        buf.trim_end().to_owned()
    };

    let mut ans = 0;
    for x in c.chars() {
        if x == '0' { continue; }
        ans += 1;
    }
    
    println!("{}", ans - 1);
}
0