結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,056 KB
testcase_01 AC 100 ms
39,772 KB
testcase_02 AC 112 ms
41,020 KB
testcase_03 WA -
testcase_04 AC 111 ms
41,320 KB
testcase_05 AC 111 ms
40,804 KB
testcase_06 AC 112 ms
40,056 KB
testcase_07 AC 114 ms
41,144 KB
testcase_08 AC 115 ms
41,316 KB
testcase_09 AC 115 ms
40,868 KB
testcase_10 AC 124 ms
41,080 KB
testcase_11 AC 108 ms
39,916 KB
testcase_12 AC 114 ms
41,208 KB
testcase_13 AC 107 ms
41,208 KB
testcase_14 AC 111 ms
41,208 KB
testcase_15 AC 100 ms
39,996 KB
testcase_16 AC 94 ms
39,348 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