結果
問題 | No.128 お年玉(1) |
ユーザー |
|
提出日時 | 2018-07-16 22:27:49 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 335 bytes |
コンパイル時間 | 12,405 ms |
コンパイル使用メモリ | 389,176 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-01 10:51:27 |
合計ジャッジ時間 | 12,918 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 3 WA * 18 |
ソースコード
use std::io::Read;fn main() {let mut input = String::new();std::io::stdin().read_to_string(&mut input).ok();let mut input = input.split_whitespace().map(|x| x.parse::<usize>().unwrap());let (n, m) = (input.next().unwrap(), input.next().unwrap());println!("{}", (n / (1000 * m)) / 1000);}