結果

問題 No.56 消費税
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 21:54:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 3,033 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-11-21 20:11:53
合計ジャッジ時間 7,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
40,764 KB
testcase_01 AC 118 ms
40,672 KB
testcase_02 AC 136 ms
41,240 KB
testcase_03 AC 140 ms
41,480 KB
testcase_04 AC 132 ms
41,576 KB
testcase_05 AC 133 ms
41,656 KB
testcase_06 AC 139 ms
41,624 KB
testcase_07 AC 129 ms
41,292 KB
testcase_08 AC 137 ms
41,732 KB
testcase_09 AC 122 ms
40,560 KB
testcase_10 AC 134 ms
41,280 KB
testcase_11 AC 140 ms
41,756 KB
testcase_12 AC 138 ms
41,688 KB
testcase_13 AC 140 ms
41,792 KB
testcase_14 AC 146 ms
41,608 KB
testcase_15 AC 139 ms
41,196 KB
testcase_16 AC 141 ms
41,356 KB
testcase_17 AC 134 ms
41,668 KB
testcase_18 AC 121 ms
40,252 KB
testcase_19 AC 139 ms
41,480 KB
testcase_20 AC 143 ms
41,304 KB
testcase_21 AC 121 ms
40,244 KB
testcase_22 AC 139 ms
41,408 KB
testcase_23 AC 137 ms
41,248 KB
testcase_24 AC 138 ms
41,584 KB
testcase_25 AC 139 ms
41,532 KB
testcase_26 AC 135 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No56 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int price = s.nextInt();
        double tax = s.nextDouble();
        System.out.println((int) (price + price * (tax / 100)));
    }
}
0