結果

問題 No.56 消費税
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 17:12:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 2,698 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 42,352 KB
最終ジャッジ日時 2024-05-06 21:15:33
合計ジャッジ時間 8,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,920 KB
testcase_01 AC 160 ms
41,932 KB
testcase_02 AC 151 ms
41,824 KB
testcase_03 AC 154 ms
41,820 KB
testcase_04 AC 149 ms
41,720 KB
testcase_05 AC 152 ms
42,152 KB
testcase_06 AC 155 ms
42,180 KB
testcase_07 AC 164 ms
41,832 KB
testcase_08 AC 161 ms
41,940 KB
testcase_09 AC 159 ms
41,956 KB
testcase_10 AC 159 ms
42,112 KB
testcase_11 AC 165 ms
41,592 KB
testcase_12 AC 151 ms
41,692 KB
testcase_13 AC 149 ms
42,052 KB
testcase_14 AC 149 ms
41,940 KB
testcase_15 AC 149 ms
41,656 KB
testcase_16 AC 157 ms
41,972 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 160 ms
41,980 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 152 ms
42,352 KB
testcase_25 AC 148 ms
41,888 KB
testcase_26 AC 150 ms
41,940 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