結果

問題 No.56 消費税
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2015-12-23 02:00:24
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 343 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 54,560 KB
最終ジャッジ日時 2024-07-18 03:01:52
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,188 KB
testcase_01 AC 114 ms
54,112 KB
testcase_02 AC 113 ms
53,920 KB
testcase_03 AC 103 ms
52,864 KB
testcase_04 AC 117 ms
54,052 KB
testcase_05 AC 113 ms
53,836 KB
testcase_06 AC 100 ms
53,104 KB
testcase_07 AC 102 ms
52,980 KB
testcase_08 AC 105 ms
53,048 KB
testcase_09 AC 112 ms
53,840 KB
testcase_10 WA -
testcase_11 AC 112 ms
53,864 KB
testcase_12 AC 104 ms
53,036 KB
testcase_13 AC 107 ms
53,704 KB
testcase_14 AC 106 ms
52,740 KB
testcase_15 AC 115 ms
54,048 KB
testcase_16 AC 117 ms
54,560 KB
testcase_17 AC 114 ms
53,964 KB
testcase_18 AC 120 ms
53,920 KB
testcase_19 AC 120 ms
54,064 KB
testcase_20 AC 116 ms
53,760 KB
testcase_21 AC 114 ms
53,952 KB
testcase_22 AC 103 ms
52,868 KB
testcase_23 AC 115 ms
53,776 KB
testcase_24 AC 113 ms
54,200 KB
testcase_25 AC 117 ms
54,096 KB
testcase_26 AC 108 ms
53,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
class Main {
    public static void main(String[] args) {

    	Scanner sc = new Scanner(System.in);
    	ArrayList<Integer> thList = new ArrayList<>();

    	int D = sc.nextInt();
    	int P = sc.nextInt();
    	double tax = D * ((double)P / 100);
    	int result = D + (int)tax;
    	System.out.println(result);
    }
}
0