結果

問題 No.46 はじめのn歩
コンテスト
ユーザー _yoshih_
提出日時 2018-09-18 21:08:42
言語 Rust
(1.94.0 + proconio + num + itertools)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 496 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 22,201 ms
コンパイル使用メモリ 393,632 KB
実行使用メモリ 396,852 KB
最終ジャッジ日時 2026-04-02 00:00:46
合計ジャッジ時間 22,707 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

use std::io::*;
use std::str::*;

fn read<T: FromStr>(sl: &mut StdinLock) -> Option<T> {
    let s = sl.by_ref().bytes().map(|c| c.unwrap() as char)
        .skip_while(|c| c.is_whitespace())
        .take_while(|c| !c.is_whitespace())
        .collect::<String>();

    s.parse::<T>().ok()
}

fn main() {
    let s = stdin();
    let mut sl = s.lock();

    let a = read::<i32>(&mut sl).unwrap();
    let b = read::<i32>(&mut sl).unwrap();
    let n = (b + (a - 1)) / a;
    println!("{}", n);
}
0