結果
問題 | No.46 はじめのn歩 |
ユーザー | halship |
提出日時 | 2020-06-06 13:58:20 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 716 bytes |
コンパイル時間 | 13,287 ms |
コンパイル使用メモリ | 401,752 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 01:45:32 |
合計ジャッジ時間 | 13,124 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 0 ms
6,816 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 0 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 0 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
ソースコード
use std::io::{self, BufRead, BufReader, BufWriter, Write}; fn main() { let stdin = io::stdin(); let mut stdin = BufReader::new(stdin.lock()); let stdout = io::stdout(); let mut stdout = BufWriter::new(stdout.lock()); run(&mut stdin, &mut stdout); } fn run<R, W>(input: &mut R, output: &mut W) where R: BufRead, W: Write, { let mut buf = String::new(); input.read_line(&mut buf).unwrap(); let mut iter = buf .trim() .split_whitespace() .map(|s| s.parse::<u32>().unwrap()); let a = iter.next().unwrap(); let b = iter.next().unwrap(); let answer = if b % a == 0 { b / a } else { b / a + 1 }; writeln!(output, "{}", answer).unwrap(); }