結果
| 問題 |
No.285 消費税2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-01-10 18:16:04 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 383 bytes |
| コンパイル時間 | 3,460 ms |
| コンパイル使用メモリ | 74,244 KB |
| 実行使用メモリ | 52,556 KB |
| 最終ジャッジ日時 | 2024-09-19 15:57:43 |
| 合計ジャッジ時間 | 6,198 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 RE * 1 |
| other | AC * 2 WA * 1 RE * 23 |
ソースコード
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class No0285 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br= new BufferedReader(new InputStreamReader(System.in));
int D = Integer.parseInt(br.readLine());
double price = D * 1.08;
System.out.println(price);
}
}