結果

問題 No.56 消費税
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-25 21:43:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 477 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 50,720 KB
最終ジャッジ日時 2024-09-13 09:17:06
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,468 KB
testcase_01 AC 55 ms
50,476 KB
testcase_02 AC 55 ms
50,580 KB
testcase_03 AC 55 ms
50,292 KB
testcase_04 AC 55 ms
50,572 KB
testcase_05 AC 56 ms
50,556 KB
testcase_06 AC 53 ms
50,316 KB
testcase_07 AC 55 ms
50,536 KB
testcase_08 AC 55 ms
50,648 KB
testcase_09 AC 54 ms
50,512 KB
testcase_10 AC 56 ms
50,664 KB
testcase_11 AC 56 ms
50,620 KB
testcase_12 AC 55 ms
50,388 KB
testcase_13 AC 54 ms
50,548 KB
testcase_14 AC 55 ms
50,480 KB
testcase_15 AC 54 ms
50,444 KB
testcase_16 AC 54 ms
50,488 KB
testcase_17 AC 54 ms
50,248 KB
testcase_18 AC 54 ms
50,592 KB
testcase_19 AC 56 ms
50,376 KB
testcase_20 AC 55 ms
50,636 KB
testcase_21 AC 54 ms
50,720 KB
testcase_22 AC 56 ms
50,560 KB
testcase_23 AC 54 ms
50,608 KB
testcase_24 AC 55 ms
50,560 KB
testcase_25 AC 54 ms
50,260 KB
testcase_26 AC 53 ms
50,508 KB
権限があれば一括ダウンロードができます

ソースコード

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 + (D * P)/100));
    }

}
0