結果

問題 No.56 消費税
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 16:08:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-05-06 21:08:33
合計ジャッジ時間 5,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,364 KB
testcase_01 AC 106 ms
41,508 KB
testcase_02 AC 117 ms
40,160 KB
testcase_03 WA -
testcase_04 AC 124 ms
41,300 KB
testcase_05 AC 120 ms
41,084 KB
testcase_06 AC 122 ms
41,508 KB
testcase_07 AC 115 ms
39,952 KB
testcase_08 AC 115 ms
39,996 KB
testcase_09 AC 120 ms
41,272 KB
testcase_10 AC 109 ms
40,264 KB
testcase_11 AC 112 ms
41,232 KB
testcase_12 AC 107 ms
39,944 KB
testcase_13 AC 113 ms
41,812 KB
testcase_14 AC 108 ms
41,436 KB
testcase_15 AC 114 ms
40,284 KB
testcase_16 AC 102 ms
40,040 KB
testcase_17 AC 117 ms
41,456 KB
testcase_18 AC 116 ms
41,432 KB
testcase_19 AC 117 ms
39,992 KB
testcase_20 WA -
testcase_21 AC 115 ms
40,132 KB
testcase_22 AC 112 ms
40,172 KB
testcase_23 AC 121 ms
41,284 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int d = sc.nextInt();
        double p = (sc.nextInt() + 100) / 100.0;

        System.out.println((int)Math.floor(d * p));
    }

}
0