結果

問題 No.56 消費税
ユーザー kaoetayakaoetaya
提出日時 2016-11-09 12:50:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 76,740 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-05-03 23:54:40
合計ジャッジ時間 8,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,272 KB
testcase_01 AC 139 ms
41,268 KB
testcase_02 AC 142 ms
41,188 KB
testcase_03 WA -
testcase_04 AC 131 ms
40,756 KB
testcase_05 AC 145 ms
41,440 KB
testcase_06 AC 147 ms
41,328 KB
testcase_07 AC 144 ms
41,240 KB
testcase_08 AC 142 ms
41,472 KB
testcase_09 AC 145 ms
41,688 KB
testcase_10 AC 143 ms
41,216 KB
testcase_11 AC 145 ms
41,476 KB
testcase_12 AC 138 ms
41,192 KB
testcase_13 AC 139 ms
41,632 KB
testcase_14 AC 128 ms
40,768 KB
testcase_15 AC 139 ms
41,344 KB
testcase_16 AC 141 ms
41,388 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 pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		double d = s.nextDouble(),p = s.nextDouble();
		System.out.println((int)(d * (1 + (p/100))));
    }
}
0