結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,072 KB
testcase_01 AC 116 ms
53,996 KB
testcase_02 AC 116 ms
53,848 KB
testcase_03 AC 102 ms
52,856 KB
testcase_04 AC 104 ms
52,936 KB
testcase_05 AC 109 ms
53,260 KB
testcase_06 AC 119 ms
53,828 KB
testcase_07 AC 116 ms
54,004 KB
testcase_08 AC 113 ms
53,936 KB
testcase_09 AC 113 ms
54,228 KB
testcase_10 WA -
testcase_11 AC 111 ms
53,788 KB
testcase_12 AC 104 ms
52,708 KB
testcase_13 AC 115 ms
54,080 KB
testcase_14 AC 104 ms
53,040 KB
testcase_15 AC 113 ms
54,080 KB
testcase_16 AC 106 ms
52,712 KB
testcase_17 AC 101 ms
52,920 KB
testcase_18 AC 106 ms
53,056 KB
testcase_19 AC 99 ms
52,836 KB
testcase_20 AC 104 ms
53,048 KB
testcase_21 AC 113 ms
54,052 KB
testcase_22 AC 101 ms
52,664 KB
testcase_23 AC 113 ms
54,148 KB
testcase_24 AC 108 ms
53,944 KB
testcase_25 AC 110 ms
52,548 KB
testcase_26 AC 117 ms
53,876 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