結果

問題 No.56 消費税
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 21:51:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 3,304 ms
コンパイル使用メモリ 75,420 KB
実行使用メモリ 54,828 KB
最終ジャッジ日時 2024-06-28 04:03:00
合計ジャッジ時間 8,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,536 KB
testcase_01 AC 138 ms
41,764 KB
testcase_02 AC 139 ms
41,516 KB
testcase_03 WA -
testcase_04 AC 135 ms
41,156 KB
testcase_05 AC 138 ms
41,676 KB
testcase_06 AC 137 ms
41,736 KB
testcase_07 AC 138 ms
41,636 KB
testcase_08 AC 138 ms
41,444 KB
testcase_09 AC 138 ms
41,436 KB
testcase_10 AC 136 ms
41,648 KB
testcase_11 AC 142 ms
41,772 KB
testcase_12 AC 126 ms
41,108 KB
testcase_13 AC 138 ms
41,492 KB
testcase_14 AC 136 ms
41,440 KB
testcase_15 AC 137 ms
41,896 KB
testcase_16 AC 139 ms
40,512 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.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

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

        Double D = sc.nextDouble();
        Double P = sc.nextDouble();

        System.out.println(Math.round(Math.floor(D*(1+P/100))));
    }
}


0