結果
問題 |
No.46 はじめのn歩
|
ユーザー |
|
提出日時 | 2020-09-21 23:12:49 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 15,744 ms |
コンパイル使用メモリ | 379,276 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 22:05:52 |
合計ジャッジ時間 | 14,471 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
use std::io::*; use std::str::FromStr; fn read<T: FromStr>() -> T { let stdin = stdin(); let stdin = stdin.lock(); let token: String = stdin .bytes() .map(|c| c.expect("failed to read char") as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect(); token.parse().ok().expect("failed to parse token") } fn main() { let a: u32 = read(); // (*) let b: u32 = read(); let ans = (b + a - 1)/a; println!("{}", ans); }