結果

問題 No.56 消費税
ユーザー cheeeesecheeeese
提出日時 2021-06-28 13:32:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-06-25 12:09:51
合計ジャッジ時間 7,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,944 KB
testcase_01 AC 136 ms
54,232 KB
testcase_02 AC 135 ms
54,164 KB
testcase_03 AC 137 ms
54,396 KB
testcase_04 AC 133 ms
54,180 KB
testcase_05 AC 142 ms
54,076 KB
testcase_06 AC 136 ms
54,200 KB
testcase_07 AC 135 ms
54,436 KB
testcase_08 AC 153 ms
54,108 KB
testcase_09 AC 149 ms
54,288 KB
testcase_10 AC 152 ms
54,048 KB
testcase_11 AC 150 ms
54,184 KB
testcase_12 AC 149 ms
53,992 KB
testcase_13 AC 134 ms
54,332 KB
testcase_14 AC 136 ms
54,064 KB
testcase_15 AC 134 ms
54,128 KB
testcase_16 AC 135 ms
54,244 KB
testcase_17 AC 136 ms
54,176 KB
testcase_18 AC 136 ms
54,244 KB
testcase_19 AC 139 ms
54,124 KB
testcase_20 AC 136 ms
54,364 KB
testcase_21 AC 136 ms
54,104 KB
testcase_22 AC 133 ms
54,132 KB
testcase_23 AC 133 ms
54,376 KB
testcase_24 AC 135 ms
54,156 KB
testcase_25 AC 136 ms
54,268 KB
testcase_26 AC 136 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main (String[] args) {
		Scanner scanner = new Scanner(System.in);
		int D = scanner.nextInt();
		int P = scanner.nextInt();

		if(D < 1 || D > Math.pow(10, 7) || P < 0 || P > 100) {
			System.out.println("Please enter a number between 1 and 10000000 for D, and between 0 and 100 for P.");
		} else {
			System.out.println((int)(D*(100+P))/100);
		}
	}
}
0