結果

問題 No.285 消費税2
ユーザー tentententen
提出日時 2021-03-17 11:38:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 41,828 KB
最終ジャッジ日時 2024-04-26 22:04:43
合計ジャッジ時間 6,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,424 KB
testcase_01 AC 122 ms
41,308 KB
testcase_02 AC 121 ms
41,364 KB
testcase_03 AC 125 ms
41,616 KB
testcase_04 AC 116 ms
41,052 KB
testcase_05 AC 122 ms
41,604 KB
testcase_06 AC 125 ms
41,192 KB
testcase_07 AC 124 ms
41,488 KB
testcase_08 AC 124 ms
41,596 KB
testcase_09 AC 124 ms
41,432 KB
testcase_10 AC 123 ms
41,272 KB
testcase_11 AC 123 ms
41,312 KB
testcase_12 AC 126 ms
41,612 KB
testcase_13 AC 126 ms
41,108 KB
testcase_14 AC 124 ms
41,632 KB
testcase_15 AC 124 ms
41,828 KB
testcase_16 AC 110 ms
40,212 KB
testcase_17 AC 123 ms
41,272 KB
testcase_18 AC 125 ms
41,500 KB
testcase_19 AC 111 ms
40,332 KB
testcase_20 AC 111 ms
39,880 KB
testcase_21 AC 125 ms
41,420 KB
testcase_22 AC 115 ms
39,980 KB
testcase_23 AC 125 ms
41,444 KB
testcase_24 AC 123 ms
41,320 KB
testcase_25 AC 126 ms
41,360 KB
testcase_26 AC 124 ms
41,148 KB
testcase_27 AC 111 ms
40,228 KB
testcase_28 AC 110 ms
40,156 KB
testcase_29 AC 108 ms
40,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        BigDecimal d = new BigDecimal(sc.next());
        System.out.println(d.multiply(new BigDecimal("1.08")).toPlainString());
    }
}
0