結果

問題 No.56 消費税
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 10:02:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 2,833 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-07-06 13:42:00
合計ジャッジ時間 6,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,060 KB
testcase_01 AC 104 ms
41,040 KB
testcase_02 AC 101 ms
41,036 KB
testcase_03 AC 89 ms
39,808 KB
testcase_04 AC 100 ms
41,340 KB
testcase_05 AC 100 ms
41,396 KB
testcase_06 AC 100 ms
41,160 KB
testcase_07 AC 100 ms
41,272 KB
testcase_08 AC 90 ms
39,892 KB
testcase_09 AC 93 ms
40,276 KB
testcase_10 AC 101 ms
41,220 KB
testcase_11 AC 102 ms
40,872 KB
testcase_12 AC 93 ms
40,360 KB
testcase_13 AC 103 ms
41,012 KB
testcase_14 AC 100 ms
41,416 KB
testcase_15 AC 93 ms
40,396 KB
testcase_16 AC 102 ms
41,060 KB
testcase_17 AC 94 ms
40,268 KB
testcase_18 AC 112 ms
41,100 KB
testcase_19 AC 91 ms
40,248 KB
testcase_20 AC 88 ms
39,764 KB
testcase_21 AC 100 ms
40,916 KB
testcase_22 AC 104 ms
41,020 KB
testcase_23 AC 94 ms
40,416 KB
testcase_24 AC 102 ms
41,304 KB
testcase_25 AC 92 ms
40,112 KB
testcase_26 AC 89 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No56syouhizei {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int D = sc.nextInt(); // 値段
		int P = sc.nextInt(); // 消費税(%)
		int A = (100 * D + D * P);
		System.out.println(A / 100);
	}
}

0