結果

問題 No.56 消費税
コンテスト
ユーザー ta60143
提出日時 2018-10-24 16:44:25
言語 Rust
(1.94.0 + proconio + num + itertools)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
WA  
実行時間 -
コード長 345 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 841 ms
コンパイル使用メモリ 188,968 KB
実行使用メモリ 7,976 KB
最終ジャッジ日時 2026-05-13 13:41:42
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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