結果

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

ソースコード

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: u32 = input.next().unwrap().parse().unwrap();
    let p: u32 = input.next().unwrap().parse().unwrap();
    
    println!("{}", ((d as f32) * (1.0 + (p as f32) / 100.0)) as u32 );
}
0