結果

問題 No.56 消費税
ユーザー kaoetayakaoetaya
提出日時 2016-11-09 12:50:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 3,263 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 56,272 KB
最終ジャッジ日時 2024-11-25 05:28:28
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,212 KB
testcase_01 AC 145 ms
53,900 KB
testcase_02 AC 143 ms
53,860 KB
testcase_03 WA -
testcase_04 AC 140 ms
53,896 KB
testcase_05 AC 144 ms
54,344 KB
testcase_06 AC 142 ms
54,100 KB
testcase_07 AC 140 ms
54,132 KB
testcase_08 AC 143 ms
54,028 KB
testcase_09 AC 142 ms
54,132 KB
testcase_10 AC 144 ms
54,236 KB
testcase_11 AC 144 ms
54,464 KB
testcase_12 AC 139 ms
53,896 KB
testcase_13 AC 137 ms
54,264 KB
testcase_14 AC 136 ms
54,032 KB
testcase_15 AC 136 ms
54,408 KB
testcase_16 AC 115 ms
53,608 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;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		double d = s.nextDouble(),p = s.nextDouble();
		System.out.println((int)(d * (1 + (p/100))));
    }
}
0