結果

問題 No.56 消費税
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 16:08:46
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 56,088 KB
最終ジャッジ日時 2024-11-29 07:14:57
合計ジャッジ時間 7,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
47,752 KB
testcase_01 AC 139 ms
46,504 KB
testcase_02 AC 136 ms
47,748 KB
testcase_03 WA -
testcase_04 AC 138 ms
46,580 KB
testcase_05 AC 139 ms
46,304 KB
testcase_06 AC 141 ms
46,440 KB
testcase_07 AC 142 ms
46,164 KB
testcase_08 AC 139 ms
46,312 KB
testcase_09 AC 139 ms
46,884 KB
testcase_10 AC 139 ms
46,204 KB
testcase_11 AC 139 ms
45,880 KB
testcase_12 AC 135 ms
46,504 KB
testcase_13 AC 140 ms
46,620 KB
testcase_14 AC 140 ms
46,296 KB
testcase_15 AC 142 ms
46,156 KB
testcase_16 AC 145 ms
46,236 KB
testcase_17 AC 141 ms
46,504 KB
testcase_18 AC 139 ms
46,788 KB
testcase_19 AC 141 ms
46,564 KB
testcase_20 WA -
testcase_21 AC 143 ms
46,444 KB
testcase_22 AC 143 ms
46,260 KB
testcase_23 AC 142 ms
46,276 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