結果

問題 No.285 消費税2
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-06-07 23:34:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 75,040 KB
実行使用メモリ 54,988 KB
最終ジャッジ日時 2024-06-30 10:36:06
合計ジャッジ時間 8,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,988 KB
testcase_01 AC 149 ms
54,104 KB
testcase_02 AC 148 ms
54,096 KB
testcase_03 AC 147 ms
54,540 KB
testcase_04 AC 149 ms
54,304 KB
testcase_05 AC 150 ms
54,368 KB
testcase_06 AC 150 ms
54,372 KB
testcase_07 AC 148 ms
54,072 KB
testcase_08 AC 143 ms
54,220 KB
testcase_09 AC 151 ms
54,388 KB
testcase_10 AC 158 ms
54,084 KB
testcase_11 AC 144 ms
54,200 KB
testcase_12 AC 152 ms
54,208 KB
testcase_13 AC 148 ms
53,924 KB
testcase_14 AC 149 ms
54,192 KB
testcase_15 AC 153 ms
54,208 KB
testcase_16 AC 150 ms
54,488 KB
testcase_17 AC 155 ms
54,476 KB
testcase_18 AC 154 ms
54,420 KB
testcase_19 AC 152 ms
54,076 KB
testcase_20 AC 156 ms
54,168 KB
testcase_21 AC 153 ms
54,472 KB
testcase_22 AC 153 ms
54,268 KB
testcase_23 AC 150 ms
54,376 KB
testcase_24 AC 150 ms
54,208 KB
testcase_25 AC 152 ms
54,488 KB
testcase_26 AC 144 ms
54,372 KB
testcase_27 AC 151 ms
54,152 KB
testcase_28 AC 149 ms
54,488 KB
testcase_29 AC 149 ms
54,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        BigDecimal b = in.nextBigDecimal();

        System.out.println(b.multiply(new BigDecimal("1.08")));
        // input : 100 -> output : 108
    }
}
0