結果

問題 No.56 消費税
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 17:12:10
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 42,096 KB
最終ジャッジ日時 2024-11-29 07:20:31
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,568 KB
testcase_01 AC 139 ms
41,864 KB
testcase_02 AC 116 ms
41,656 KB
testcase_03 AC 128 ms
41,684 KB
testcase_04 AC 133 ms
41,476 KB
testcase_05 AC 116 ms
40,948 KB
testcase_06 AC 133 ms
41,860 KB
testcase_07 AC 115 ms
40,828 KB
testcase_08 AC 133 ms
42,096 KB
testcase_09 AC 130 ms
41,732 KB
testcase_10 AC 132 ms
41,956 KB
testcase_11 AC 120 ms
40,836 KB
testcase_12 AC 126 ms
41,616 KB
testcase_13 AC 140 ms
41,684 KB
testcase_14 AC 138 ms
41,564 KB
testcase_15 AC 129 ms
41,620 KB
testcase_16 AC 134 ms
41,668 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 122 ms
41,476 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 131 ms
41,792 KB
testcase_25 AC 114 ms
41,732 KB
testcase_26 AC 129 ms
41,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int toIntMultiplication(int a, double b) {
        BigDecimal bda = BigDecimal.valueOf(a);
        BigDecimal bdb = BigDecimal.valueOf(b);

        BigDecimal value = bda.multiply(bdb).setScale(1, RoundingMode.DOWN);
        return value.intValue();
    }

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int d = sc.nextInt();
        double p = sc.nextDouble() / 100 + 1;

        System.out.println(toIntMultiplication(d, p));
    }

}
0