結果

問題 No.56 消費税
ユーザー Maricom_tkg
提出日時 2018-10-23 11:36:22
言語 Rust
(1.83.0 + proconio)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 12,994 ms
コンパイル使用メモリ 378,572 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 04:05:21
合計ジャッジ時間 13,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
    let mut buf = String::new();
    std::io::stdin().read_to_string(&mut buf).unwrap();
    
    let mut iter = buf.split_whitespace();
    
    let d: f64 = iter.next().unwrap().parse().unwrap();
    let p: f64 = iter.next().unwrap().parse().unwrap();
    
    println!("{}", (d * (1. + p/100.)) as isize);
}
0