結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-06-09 10:04:29 |
| 言語 | Rust (1.97.1 + proconio + num + itertools + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 0 ms / 5,000 ms |
| + 809µs | |
| コード長 | 347 bytes |
| 記録 | |
| コンパイル時間 | 710 ms |
| コンパイル使用メモリ | 184,376 KB |
| 実行使用メモリ | 9,708 KB |
| 最終ジャッジ日時 | 2026-09-01 11:00:42 |
| 合計ジャッジ時間 | 1,989 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
use std::io::Read;
fn main(){
let mut input = "".to_owned();
std::io::stdin().read_to_string(&mut input).unwrap();
let mut input = input.split_ascii_whitespace();
macro_rules! read(($ty:ty) => (input.next().unwrap().parse::<$ty>().unwrap()));
let a=read!(usize);
let b=read!(usize);
println!("{}",(b+a-1)/a);
}