結果

問題 No.56 消費税
ユーザー ta60143ta60143
提出日時 2018-10-24 16:44:25
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 12,728 ms
コンパイル使用メモリ 404,216 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 05:28:11
合計ジャッジ時間 13,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

fn main() {
    let mut input = String::new();
    io::stdin().read_line(&mut input).unwrap();
    
    let mut input = input.trim().split_whitespace();
    
    let d: f64 = input.next().unwrap().parse().unwrap();
    let p: f64 = input.next().unwrap().parse().unwrap();
    
    println!("{}", (d * (1.0 + p / 100.0)) as u32 );
}
0