結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-01-10 18:16:04 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 383 bytes |
| 記録 | |
| コンパイル時間 | 3,116 ms |
| コンパイル使用メモリ | 82,036 KB |
| 実行使用メモリ | 45,352 KB |
| 最終ジャッジ日時 | 2026-04-08 03:12:32 |
| 合計ジャッジ時間 | 4,966 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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);
}
}