結果

問題 No.56 消費税
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:41:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 50,760 KB
最終ジャッジ日時 2024-09-13 09:15:34
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,580 KB
testcase_01 AC 54 ms
50,244 KB
testcase_02 AC 54 ms
50,560 KB
testcase_03 WA -
testcase_04 AC 53 ms
50,344 KB
testcase_05 AC 54 ms
50,572 KB
testcase_06 AC 54 ms
50,748 KB
testcase_07 AC 54 ms
50,616 KB
testcase_08 AC 55 ms
50,532 KB
testcase_09 AC 54 ms
50,516 KB
testcase_10 AC 55 ms
50,620 KB
testcase_11 AC 56 ms
50,232 KB
testcase_12 AC 55 ms
50,284 KB
testcase_13 AC 54 ms
50,468 KB
testcase_14 AC 54 ms
50,240 KB
testcase_15 AC 54 ms
50,296 KB
testcase_16 AC 54 ms
50,248 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.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader reader =new BufferedReader(new InputStreamReader(System.in));
        String[] inputs = reader.readLine().split(" ");
        long D = Long.parseLong(inputs[0]);
        double P = Double.parseDouble(inputs[1]);

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

}
0