結果

問題 No.56 消費税
ユーザー マサマサ
提出日時 2022-02-10 23:10:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 76,028 KB
実行使用メモリ 56,580 KB
最終ジャッジ日時 2024-06-26 06:36:23
合計ジャッジ時間 7,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,012 KB
testcase_01 AC 138 ms
53,944 KB
testcase_02 AC 138 ms
54,428 KB
testcase_03 AC 140 ms
54,204 KB
testcase_04 AC 139 ms
54,540 KB
testcase_05 AC 146 ms
54,312 KB
testcase_06 AC 143 ms
54,504 KB
testcase_07 AC 139 ms
54,256 KB
testcase_08 AC 142 ms
54,192 KB
testcase_09 AC 138 ms
54,088 KB
testcase_10 AC 135 ms
54,216 KB
testcase_11 AC 137 ms
54,172 KB
testcase_12 AC 135 ms
54,184 KB
testcase_13 AC 138 ms
54,276 KB
testcase_14 AC 138 ms
54,240 KB
testcase_15 AC 139 ms
54,324 KB
testcase_16 AC 139 ms
54,152 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 140 ms
54,164 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 139 ms
54,524 KB
testcase_25 AC 141 ms
54,224 KB
testcase_26 AC 137 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int p = sc.nextInt();
		
		double taxRate = 1 + (double)p / 100;
		
		BigDecimal bd1 = new BigDecimal(Integer.toString(d));
		BigDecimal bd2 = new BigDecimal(Double.toString(taxRate));
		BigDecimal result = bd1.multiply(bd2);
		
		System.out.println(result.intValue());
		
		sc.close();
	}
}
0