結果

問題 No.285 消費税2
ユーザー tentententen
提出日時 2021-03-17 11:38:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-11-14 13:42:07
合計ジャッジ時間 7,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,068 KB
testcase_01 AC 128 ms
54,272 KB
testcase_02 AC 128 ms
54,268 KB
testcase_03 AC 126 ms
54,276 KB
testcase_04 AC 128 ms
53,984 KB
testcase_05 AC 127 ms
54,372 KB
testcase_06 AC 129 ms
54,376 KB
testcase_07 AC 114 ms
53,152 KB
testcase_08 AC 113 ms
52,824 KB
testcase_09 AC 132 ms
54,008 KB
testcase_10 AC 125 ms
54,220 KB
testcase_11 AC 113 ms
52,796 KB
testcase_12 AC 129 ms
54,240 KB
testcase_13 AC 128 ms
54,428 KB
testcase_14 AC 128 ms
54,144 KB
testcase_15 AC 125 ms
54,084 KB
testcase_16 AC 127 ms
54,032 KB
testcase_17 AC 128 ms
54,136 KB
testcase_18 AC 127 ms
54,284 KB
testcase_19 AC 128 ms
54,268 KB
testcase_20 AC 128 ms
54,372 KB
testcase_21 AC 134 ms
54,004 KB
testcase_22 AC 127 ms
54,280 KB
testcase_23 AC 127 ms
54,112 KB
testcase_24 AC 129 ms
54,172 KB
testcase_25 AC 128 ms
54,248 KB
testcase_26 AC 133 ms
54,144 KB
testcase_27 AC 129 ms
54,140 KB
testcase_28 AC 125 ms
53,948 KB
testcase_29 AC 113 ms
53,296 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