結果

問題 No.56 消費税
ユーザー howakurohowakuro
提出日時 2015-09-25 21:52:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-07-19 09:17:00
合計ジャッジ時間 8,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,824 KB
testcase_01 AC 145 ms
41,524 KB
testcase_02 AC 146 ms
41,344 KB
testcase_03 WA -
testcase_04 AC 145 ms
41,668 KB
testcase_05 AC 143 ms
41,528 KB
testcase_06 AC 147 ms
41,708 KB
testcase_07 AC 131 ms
41,656 KB
testcase_08 AC 144 ms
41,644 KB
testcase_09 AC 146 ms
41,592 KB
testcase_10 AC 150 ms
41,424 KB
testcase_11 AC 146 ms
41,400 KB
testcase_12 AC 143 ms
41,340 KB
testcase_13 AC 131 ms
40,940 KB
testcase_14 AC 146 ms
41,776 KB
testcase_15 AC 131 ms
40,656 KB
testcase_16 AC 145 ms
41,408 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 ComsunptionTax {
	static Scanner scan= new Scanner(System.in);
	public static void main(String[] args) {
		double D = scan.nextDouble();
		double P = scan.nextDouble()/100+1;
		int Price = (int) (D*P);
		System.out.println(Price);

	}

}
0