結果

問題 No.56 消費税
ユーザー syusyu
提出日時 2020-08-25 20:22:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 54,640 KB
最終ジャッジ日時 2024-11-06 11:40:21
合計ジャッジ時間 7,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,040 KB
testcase_01 AC 145 ms
54,456 KB
testcase_02 AC 144 ms
54,396 KB
testcase_03 WA -
testcase_04 AC 146 ms
54,048 KB
testcase_05 AC 149 ms
54,288 KB
testcase_06 AC 148 ms
54,088 KB
testcase_07 AC 144 ms
54,320 KB
testcase_08 AC 143 ms
54,264 KB
testcase_09 AC 145 ms
53,308 KB
testcase_10 AC 145 ms
54,212 KB
testcase_11 AC 146 ms
54,272 KB
testcase_12 AC 147 ms
54,168 KB
testcase_13 AC 146 ms
54,300 KB
testcase_14 AC 146 ms
54,044 KB
testcase_15 AC 146 ms
54,468 KB
testcase_16 AC 145 ms
54,304 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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