結果

問題 No.56 消費税
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 09:33:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2024-07-06 12:44:26
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,688 KB
testcase_01 AC 110 ms
53,676 KB
testcase_02 AC 110 ms
53,568 KB
testcase_03 AC 103 ms
52,880 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 106 ms
53,564 KB
testcase_08 AC 116 ms
53,924 KB
testcase_09 AC 111 ms
54,004 KB
testcase_10 AC 99 ms
52,792 KB
testcase_11 AC 103 ms
52,684 KB
testcase_12 AC 108 ms
53,752 KB
testcase_13 AC 112 ms
53,820 KB
testcase_14 AC 110 ms
53,932 KB
testcase_15 AC 116 ms
53,564 KB
testcase_16 AC 111 ms
54,008 KB
testcase_17 WA -
testcase_18 AC 113 ms
53,740 KB
testcase_19 AC 111 ms
53,844 KB
testcase_20 AC 110 ms
53,836 KB
testcase_21 WA -
testcase_22 AC 100 ms
52,356 KB
testcase_23 AC 117 ms
53,832 KB
testcase_24 AC 133 ms
53,864 KB
testcase_25 AC 112 ms
52,352 KB
testcase_26 AC 125 ms
53,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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