結果

問題 No.56 消費税
ユーザー l1267976l1267976
提出日時 2017-03-15 00:14:10
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 349 bytes
コンパイル時間 2,762 ms
コンパイル使用メモリ 76,280 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-07-18 03:28:39
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,380 KB
testcase_01 AC 123 ms
54,184 KB
testcase_02 AC 119 ms
53,952 KB
testcase_03 AC 134 ms
54,112 KB
testcase_04 AC 123 ms
54,368 KB
testcase_05 AC 125 ms
54,240 KB
testcase_06 AC 110 ms
53,212 KB
testcase_07 AC 136 ms
54,264 KB
testcase_08 AC 138 ms
54,072 KB
testcase_09 AC 135 ms
54,264 KB
testcase_10 WA -
testcase_11 AC 128 ms
54,008 KB
testcase_12 AC 123 ms
53,948 KB
testcase_13 AC 117 ms
53,936 KB
testcase_14 AC 121 ms
53,408 KB
testcase_15 AC 123 ms
53,964 KB
testcase_16 AC 120 ms
54,224 KB
testcase_17 AC 130 ms
54,124 KB
testcase_18 AC 127 ms
53,916 KB
testcase_19 AC 113 ms
53,584 KB
testcase_20 AC 123 ms
54,152 KB
testcase_21 AC 123 ms
54,128 KB
testcase_22 AC 119 ms
54,220 KB
testcase_23 AC 126 ms
53,944 KB
testcase_24 AC 117 ms
54,016 KB
testcase_25 AC 110 ms
53,616 KB
testcase_26 AC 110 ms
53,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No56 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double d = sc.nextDouble();
        double p = sc.nextDouble();

        int tax = (int) (d * (p / 100));
        int sum = (int) d + tax;

        System.out.println(sum);

        sc.close();
    }

}
0