結果

問題 No.56 消費税
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-06 00:04:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 56,120 KB
最終ジャッジ日時 2024-06-26 10:41:14
合計ジャッジ時間 7,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,092 KB
testcase_01 AC 131 ms
53,864 KB
testcase_02 AC 121 ms
54,228 KB
testcase_03 WA -
testcase_04 AC 122 ms
54,104 KB
testcase_05 AC 123 ms
54,012 KB
testcase_06 AC 120 ms
54,164 KB
testcase_07 AC 125 ms
53,916 KB
testcase_08 AC 122 ms
54,160 KB
testcase_09 AC 121 ms
53,848 KB
testcase_10 AC 125 ms
54,320 KB
testcase_11 AC 121 ms
53,908 KB
testcase_12 AC 122 ms
54,076 KB
testcase_13 AC 119 ms
54,036 KB
testcase_14 AC 119 ms
54,116 KB
testcase_15 AC 124 ms
54,196 KB
testcase_16 AC 124 ms
54,052 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);
		double D = sc.nextInt();
		double P = sc.nextInt();

		System.out.println((int)(Math.floor(D * (P / 100 + 1))));

	}

}
0