結果
問題 | No.128 お年玉(1) |
ユーザー |
|
提出日時 | 2018-07-16 22:26:25 |
言語 | Rust (1.83.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 335 bytes |
コンパイル時間 | 15,269 ms |
コンパイル使用メモリ | 393,588 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 10:51:13 |
合計ジャッジ時間 | 13,976 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 1 WA * 20 |
ソースコード
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);}