結果

問題 No.56 消費税
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 09:45:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 2,857 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 56,040 KB
最終ジャッジ日時 2024-07-06 13:06:34
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,700 KB
testcase_01 AC 111 ms
53,764 KB
testcase_02 AC 116 ms
53,828 KB
testcase_03 WA -
testcase_04 AC 113 ms
54,228 KB
testcase_05 AC 101 ms
52,464 KB
testcase_06 AC 118 ms
53,828 KB
testcase_07 AC 102 ms
52,436 KB
testcase_08 AC 113 ms
53,964 KB
testcase_09 AC 111 ms
53,752 KB
testcase_10 AC 114 ms
53,700 KB
testcase_11 AC 112 ms
53,872 KB
testcase_12 AC 135 ms
54,136 KB
testcase_13 AC 134 ms
54,152 KB
testcase_14 AC 138 ms
53,936 KB
testcase_15 AC 129 ms
54,012 KB
testcase_16 AC 127 ms
53,916 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 No56syouhizei {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double D = sc.nextInt(); // 値段
		double P = sc.nextInt(); // 消費税(%)
		double A = D * (1 + P / 100);
		System.out.println((int)A);
	}
}

0