結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,064 KB
testcase_01 AC 120 ms
41,380 KB
testcase_02 AC 124 ms
41,128 KB
testcase_03 AC 123 ms
41,344 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 123 ms
41,240 KB
testcase_08 AC 111 ms
41,352 KB
testcase_09 AC 120 ms
40,240 KB
testcase_10 AC 129 ms
41,236 KB
testcase_11 AC 125 ms
41,636 KB
testcase_12 AC 124 ms
41,320 KB
testcase_13 AC 125 ms
41,316 KB
testcase_14 AC 125 ms
41,316 KB
testcase_15 AC 124 ms
41,508 KB
testcase_16 AC 126 ms
41,492 KB
testcase_17 WA -
testcase_18 AC 122 ms
41,272 KB
testcase_19 AC 127 ms
41,396 KB
testcase_20 AC 122 ms
41,492 KB
testcase_21 WA -
testcase_22 AC 130 ms
41,400 KB
testcase_23 AC 115 ms
41,484 KB
testcase_24 AC 126 ms
41,476 KB
testcase_25 AC 125 ms
41,268 KB
testcase_26 AC 112 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No56 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		float D = sc.nextInt();
		float P = sc.nextInt();

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