結果

問題 No.56 消費税
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 21:46:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 4,625 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 56,128 KB
最終ジャッジ日時 2024-10-01 11:32:43
合計ジャッジ時間 7,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,604 KB
testcase_01 AC 110 ms
53,160 KB
testcase_02 AC 99 ms
52,856 KB
testcase_03 WA -
testcase_04 AC 103 ms
52,792 KB
testcase_05 AC 98 ms
52,768 KB
testcase_06 AC 110 ms
53,732 KB
testcase_07 AC 103 ms
52,720 KB
testcase_08 AC 114 ms
53,760 KB
testcase_09 AC 104 ms
52,696 KB
testcase_10 AC 114 ms
53,944 KB
testcase_11 AC 113 ms
54,128 KB
testcase_12 AC 100 ms
52,608 KB
testcase_13 AC 111 ms
54,160 KB
testcase_14 AC 110 ms
53,900 KB
testcase_15 AC 102 ms
52,768 KB
testcase_16 AC 99 ms
54,272 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 Main {
    static Scanner in = new Scanner(System.in);
    public static void main(String[] args) {
        int i = in.nextInt();
        double d = in.nextInt() / 100.0 + 1;
        System.out.println((int)(i *d));
    }
}
0