結果

問題 No.285 消費税2
ユーザー YamaKasaYamaKasa
提出日時 2018-05-21 15:52:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-06-28 14:58:32
合計ジャッジ時間 6,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,532 KB
testcase_01 AC 125 ms
41,400 KB
testcase_02 AC 125 ms
41,548 KB
testcase_03 AC 128 ms
41,328 KB
testcase_04 AC 126 ms
41,288 KB
testcase_05 AC 126 ms
41,448 KB
testcase_06 AC 128 ms
41,188 KB
testcase_07 AC 125 ms
41,696 KB
testcase_08 AC 128 ms
41,220 KB
testcase_09 AC 112 ms
40,252 KB
testcase_10 AC 113 ms
40,644 KB
testcase_11 AC 111 ms
39,996 KB
testcase_12 AC 111 ms
40,452 KB
testcase_13 AC 122 ms
41,368 KB
testcase_14 AC 125 ms
41,616 KB
testcase_15 AC 123 ms
41,440 KB
testcase_16 AC 115 ms
40,412 KB
testcase_17 AC 125 ms
41,396 KB
testcase_18 AC 122 ms
41,460 KB
testcase_19 AC 114 ms
40,316 KB
testcase_20 AC 110 ms
40,136 KB
testcase_21 AC 111 ms
40,000 KB
testcase_22 AC 127 ms
41,616 KB
testcase_23 AC 125 ms
41,344 KB
testcase_24 AC 124 ms
41,480 KB
testcase_25 AC 126 ms
41,660 KB
testcase_26 AC 125 ms
41,572 KB
testcase_27 AC 124 ms
41,552 KB
testcase_28 AC 110 ms
40,316 KB
testcase_29 AC 123 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String D = scan.next();
		scan.close();
		BigDecimal big = new BigDecimal(D);
		BigDecimal r = new BigDecimal("1.08");

		BigDecimal ans = big.multiply(r);
		System.out.println(ans);

	}
}
0