結果

問題 No.56 消費税
ユーザー yagi2yagi2
提出日時 2017-04-25 17:32:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-09-13 08:54:01
合計ジャッジ時間 6,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,108 KB
testcase_01 AC 128 ms
53,684 KB
testcase_02 AC 128 ms
53,920 KB
testcase_03 AC 128 ms
54,132 KB
testcase_04 AC 130 ms
54,040 KB
testcase_05 AC 129 ms
54,144 KB
testcase_06 AC 129 ms
54,208 KB
testcase_07 AC 126 ms
54,004 KB
testcase_08 AC 130 ms
53,856 KB
testcase_09 AC 127 ms
53,612 KB
testcase_10 WA -
testcase_11 AC 126 ms
53,872 KB
testcase_12 AC 129 ms
54,068 KB
testcase_13 AC 130 ms
54,220 KB
testcase_14 AC 129 ms
54,200 KB
testcase_15 AC 128 ms
54,056 KB
testcase_16 AC 128 ms
54,132 KB
testcase_17 AC 127 ms
54,088 KB
testcase_18 AC 128 ms
53,928 KB
testcase_19 AC 128 ms
54,176 KB
testcase_20 AC 127 ms
53,776 KB
testcase_21 AC 127 ms
54,100 KB
testcase_22 AC 131 ms
54,016 KB
testcase_23 AC 127 ms
53,956 KB
testcase_24 AC 127 ms
54,184 KB
testcase_25 AC 129 ms
54,284 KB
testcase_26 AC 126 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long D = Long.parseLong(sc.next());
        int P = Integer.parseInt(sc.next());

        System.out.println(D + (int)Math.floor(D*(P/100.0)));
    }
}
0