結果

問題 No.56 消費税
ユーザー eagleeagle
提出日時 2022-05-26 15:18:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 78,152 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-09-20 15:00:58
合計ジャッジ時間 5,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,068 KB
testcase_01 AC 109 ms
41,192 KB
testcase_02 AC 100 ms
39,948 KB
testcase_03 AC 108 ms
41,112 KB
testcase_04 AC 111 ms
41,376 KB
testcase_05 AC 106 ms
40,468 KB
testcase_06 AC 98 ms
40,284 KB
testcase_07 AC 114 ms
41,068 KB
testcase_08 AC 98 ms
40,224 KB
testcase_09 AC 109 ms
41,216 KB
testcase_10 AC 99 ms
40,092 KB
testcase_11 AC 109 ms
41,296 KB
testcase_12 AC 109 ms
41,036 KB
testcase_13 AC 98 ms
40,348 KB
testcase_14 AC 98 ms
40,456 KB
testcase_15 AC 101 ms
40,400 KB
testcase_16 AC 115 ms
41,356 KB
testcase_17 AC 109 ms
41,292 KB
testcase_18 AC 107 ms
41,068 KB
testcase_19 AC 98 ms
40,152 KB
testcase_20 AC 109 ms
41,208 KB
testcase_21 AC 104 ms
40,748 KB
testcase_22 AC 100 ms
40,176 KB
testcase_23 AC 101 ms
40,064 KB
testcase_24 AC 99 ms
40,184 KB
testcase_25 AC 119 ms
41,312 KB
testcase_26 AC 119 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//買おうとしている消費税を含まない品物の金額
		int D = sc.nextInt();
		//国の消費税率
		int P = sc.nextInt();
		int ans = D + D * P /100;
		System.out.println(ans);
	}
}
0