結果
問題 |
No.388 階段 (1)
|
ユーザー |
|
提出日時 | 2019-10-13 16:53:15 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 407 bytes |
コンパイル時間 | 13,928 ms |
コンパイル使用メモリ | 378,180 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-16 01:14:59 |
合計ジャッジ時間 | 15,083 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
use std::io::{self, Read}; fn read_stdin() -> Vec<String> { let mut buffer = String::new(); io::stdin().read_to_string(&mut buffer).ok(); buffer.trim().split('\n').map(|s| s.to_string()).collect() } fn main() { let input: Vec<usize> = read_stdin()[0].split(' ').map(|s| s.parse::<usize>().unwrap()).collect(); let s = &input[0]; let f = &input[1]; println!("{}", s / f + 1); }