結果

問題 No.56 消費税
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 20:09:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 3,326 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-11-27 19:09:12
合計ジャッジ時間 6,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,312 KB
testcase_01 AC 107 ms
40,600 KB
testcase_02 AC 120 ms
41,020 KB
testcase_03 WA -
testcase_04 AC 107 ms
40,420 KB
testcase_05 AC 103 ms
40,048 KB
testcase_06 AC 104 ms
39,852 KB
testcase_07 AC 99 ms
39,748 KB
testcase_08 AC 98 ms
39,848 KB
testcase_09 AC 120 ms
41,148 KB
testcase_10 AC 119 ms
41,368 KB
testcase_11 AC 114 ms
41,012 KB
testcase_12 AC 102 ms
40,028 KB
testcase_13 AC 116 ms
41,152 KB
testcase_14 AC 113 ms
41,276 KB
testcase_15 AC 113 ms
41,148 KB
testcase_16 AC 113 ms
41,028 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No56 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);
		int D,P;
		D = sc.nextInt();
		P = sc.nextInt();

		double tax ;
		int price ;
		tax = 1 + 0.01*P;
		price = (int)(D*tax);



		System.out.println(price);

	}

}
0