結果

問題 No.285 消費税2
コンテスト
ユーザー ixTL255
提出日時 2023-03-24 11:39:00
言語 Rust
(1.97.1 + proconio + num + itertools + ac-library)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
AC  
実行時間 0 ms / 2,000 ms
+ 908µs
コード長 171 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 425 ms
コンパイル使用メモリ 176,200 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-30 07:45:14
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable does not need to be mutable
 --> src/main.rs:4:9
  |
4 |     let mut d: f64 = d.trim().parse().unwrap();
  |         ----^
  |         |
  |         help: remove this `mut`
  |
  = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default

ソースコード

diff #
raw source code

fn main() {
    let mut d = String::new();
    std::io::stdin().read_line(&mut d).ok();
    let mut d: f64 = d.trim().parse().unwrap();

    println!("{:.2}", d * 1.08);
}
0