結果
| 問題 |
No.56 消費税
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-10-14 10:30:30 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 452 bytes |
| コンパイル時間 | 14,211 ms |
| コンパイル使用メモリ | 378,960 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-23 09:48:15 |
| 合計ジャッジ時間 | 12,834 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
use std::io::{self, Read};
fn read_stdin() -> Vec<String> {
let mut buffer = String::new();
io::stdin().read_to_string(&mut buffer).ok();
buffer.trim().split('\n').map(|s| s.to_string()).collect()
}
fn main() {
let input = read_stdin();
let splitted = &input[0].split(' ').map(|s| s.parse::<usize>().unwrap()).collect::<Vec<usize>>();
let d = *&splitted[0];
let p = *&splitted[1];
println!("{}", d + (d * p / 100));
}