結果

問題 No.285 消費税2
ユーザー nCk_cvnCk_cv
提出日時 2015-12-09 17:52:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 75,432 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-09-15 05:52:47
合計ジャッジ時間 7,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,992 KB
testcase_01 AC 145 ms
54,472 KB
testcase_02 AC 144 ms
54,200 KB
testcase_03 AC 141 ms
54,328 KB
testcase_04 AC 143 ms
54,172 KB
testcase_05 AC 144 ms
53,868 KB
testcase_06 AC 143 ms
54,120 KB
testcase_07 AC 145 ms
54,156 KB
testcase_08 AC 143 ms
53,952 KB
testcase_09 AC 144 ms
53,956 KB
testcase_10 AC 143 ms
54,160 KB
testcase_11 AC 143 ms
54,124 KB
testcase_12 AC 142 ms
53,960 KB
testcase_13 AC 140 ms
54,284 KB
testcase_14 AC 130 ms
53,964 KB
testcase_15 AC 144 ms
53,968 KB
testcase_16 AC 142 ms
54,228 KB
testcase_17 AC 142 ms
53,976 KB
testcase_18 AC 143 ms
54,132 KB
testcase_19 AC 144 ms
54,200 KB
testcase_20 AC 148 ms
54,404 KB
testcase_21 AC 144 ms
54,212 KB
testcase_22 AC 144 ms
54,052 KB
testcase_23 AC 144 ms
54,444 KB
testcase_24 AC 143 ms
54,012 KB
testcase_25 AC 143 ms
54,096 KB
testcase_26 AC 142 ms
54,000 KB
testcase_27 AC 141 ms
53,888 KB
testcase_28 AC 142 ms
54,160 KB
testcase_29 AC 144 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Map.Entry;
import java.math.*;
import java.awt.geom.*;
import java.io.*;
      
      
public class Main {	

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigDecimal bd = sc.nextBigDecimal();
		bd = bd.multiply(new BigDecimal("1.08"));
		System.out.println(bd.toString());
	}
		
}
0