結果

問題 No.285 消費税2
ユーザー kou6839kou6839
提出日時 2015-10-16 01:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 80,008 KB
実行使用メモリ 42,412 KB
最終ジャッジ日時 2024-07-21 16:44:13
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
42,288 KB
testcase_01 AC 125 ms
42,216 KB
testcase_02 AC 136 ms
41,956 KB
testcase_03 AC 131 ms
42,156 KB
testcase_04 AC 118 ms
42,024 KB
testcase_05 AC 134 ms
42,016 KB
testcase_06 AC 134 ms
42,060 KB
testcase_07 AC 138 ms
42,048 KB
testcase_08 AC 135 ms
42,176 KB
testcase_09 AC 137 ms
41,980 KB
testcase_10 AC 139 ms
42,216 KB
testcase_11 AC 124 ms
42,032 KB
testcase_12 AC 122 ms
41,960 KB
testcase_13 AC 119 ms
42,056 KB
testcase_14 AC 131 ms
42,252 KB
testcase_15 AC 118 ms
42,388 KB
testcase_16 AC 134 ms
42,360 KB
testcase_17 AC 132 ms
41,692 KB
testcase_18 AC 128 ms
41,960 KB
testcase_19 AC 137 ms
42,156 KB
testcase_20 AC 140 ms
42,140 KB
testcase_21 AC 137 ms
42,076 KB
testcase_22 AC 136 ms
42,344 KB
testcase_23 AC 136 ms
42,104 KB
testcase_24 AC 137 ms
42,124 KB
testcase_25 AC 136 ms
42,208 KB
testcase_26 AC 136 ms
42,180 KB
testcase_27 AC 134 ms
42,412 KB
testcase_28 AC 135 ms
42,288 KB
testcase_29 AC 134 ms
42,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.event.KeyAdapter;
import java.math.BigDecimal;
import java.util.*;

public class Main{
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//String a = new BigDecimal(sc.nextDouble()*1.08+"").toPlainString();
		System.out.println(String.format("%.2f", new BigDecimal(sc.nextDouble()*1.08+"")));
	}
}
0