結果

問題 No.128 お年玉(1)
ユーザー dnikkdnikk
提出日時 2018-07-16 22:32:30
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 12,346 ms
コンパイル使用メモリ 377,036 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 10:51:48
合計ジャッジ時間 13,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
}
0