結果

問題 No.56 消費税
ユーザー yuki2006yuki2006
提出日時 2014-11-04 00:08:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 3,331 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-07-18 01:41:10
合計ジャッジ時間 7,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,152 KB
testcase_01 AC 133 ms
41,012 KB
testcase_02 AC 133 ms
40,884 KB
testcase_03 AC 130 ms
41,056 KB
testcase_04 AC 133 ms
41,128 KB
testcase_05 AC 128 ms
41,468 KB
testcase_06 AC 128 ms
40,960 KB
testcase_07 AC 115 ms
40,032 KB
testcase_08 AC 130 ms
40,788 KB
testcase_09 AC 130 ms
41,124 KB
testcase_10 AC 132 ms
40,832 KB
testcase_11 AC 130 ms
41,344 KB
testcase_12 AC 129 ms
41,280 KB
testcase_13 AC 132 ms
40,956 KB
testcase_14 AC 132 ms
40,772 KB
testcase_15 AC 131 ms
41,012 KB
testcase_16 AC 130 ms
41,260 KB
testcase_17 AC 130 ms
41,276 KB
testcase_18 AC 142 ms
41,336 KB
testcase_19 AC 129 ms
40,928 KB
testcase_20 AC 130 ms
41,036 KB
testcase_21 AC 116 ms
39,660 KB
testcase_22 AC 127 ms
40,964 KB
testcase_23 AC 133 ms
41,024 KB
testcase_24 AC 126 ms
41,392 KB
testcase_25 AC 130 ms
41,132 KB
testcase_26 AC 131 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki056 {
    public static void main(String[] args) {
        Yuki056 hoge = new Yuki056();
    }

    Yuki056() {
        Scanner scanner = new Scanner(System.in);
        int D = scanner.nextInt();
        int P = scanner.nextInt();

        System.out.println((int) (D + 0.01 * D * P));
    }

}
0