結果

問題 No.56 消費税
ユーザー YoshihitoYoshihito
提出日時 2020-03-27 17:53:36
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 834 bytes
コンパイル時間 14,046 ms
コンパイル使用メモリ 400,204 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-01-02 09:02:13
合計ジャッジ時間 11,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{self, Read};

#[derive(Debug)]
struct Input {
    d: i32,
    p: i32,
}

fn next_token(cin_lock: &mut io::StdinLock) -> String {
    cin_lock
        .by_ref()
        .bytes()
        .map(|c| c.unwrap() as char)
        .skip_while(|c| c.is_whitespace())
        .take_while(|c| !c.is_whitespace())
        .collect::<String>()
}

fn read_input(cin_lock: &mut io::StdinLock) -> Input {
    Input {
        d: next_token(cin_lock).parse().unwrap(),
        p: next_token(cin_lock).parse().unwrap(),
    }
}

fn solve(input: &Input, _cin_lock: &mut io::StdinLock) {
    let tax = input.d * input.p / 100;
    let price = input.d + tax;
    println!("{}", price);
}

fn main() {
    let cin = io::stdin();
    let mut cin_lock = cin.lock();

    let input = read_input(&mut cin_lock);
    solve(&input, &mut cin_lock);
}
0