結果

問題 No.46 はじめのn歩
ユーザー koka
提出日時 2019-03-30 00:35:37
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 624 bytes
コンパイル時間 23,049 ms
コンパイル使用メモリ 376,420 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 01:35:31
合計ジャッジ時間 17,616 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;


fn main() {
    let (a, b) = {
        let i = read::<f64>();
        (i[0], i[1])
    };
    println!("{}", (b / a).ceil());
}


#[allow(dead_code)]
fn read<T>() -> Vec<T>
where T:
std::str::FromStr,
T::Err: std::fmt::Debug {

    let mut buf = String::new();
    io::stdin().read_line(&mut buf).unwrap();
    buf.split_whitespace()
        .map(|s| s.trim().parse().unwrap())
        .collect()
}

#[allow(dead_code)]
fn read_one<T>() -> T
where T:
std::str::FromStr,
T::Err: std::fmt::Debug {

    let mut buf = String::new();
    io::stdin().read_line(&mut buf).unwrap();
    buf.trim().parse().unwrap()
}
0