結果

問題 No.56 消費税
ユーザー mosmos_21mosmos_21
提出日時 2017-06-17 21:50:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-10-01 11:33:35
合計ジャッジ時間 5,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,628 KB
testcase_01 AC 109 ms
53,792 KB
testcase_02 AC 99 ms
52,756 KB
testcase_03 AC 100 ms
52,800 KB
testcase_04 AC 95 ms
52,176 KB
testcase_05 AC 113 ms
53,912 KB
testcase_06 AC 114 ms
53,728 KB
testcase_07 AC 101 ms
53,076 KB
testcase_08 AC 100 ms
52,596 KB
testcase_09 AC 113 ms
53,812 KB
testcase_10 AC 114 ms
53,844 KB
testcase_11 AC 113 ms
53,772 KB
testcase_12 AC 108 ms
53,708 KB
testcase_13 AC 112 ms
53,828 KB
testcase_14 AC 108 ms
53,372 KB
testcase_15 AC 113 ms
54,032 KB
testcase_16 AC 99 ms
52,892 KB
testcase_17 AC 98 ms
52,564 KB
testcase_18 AC 110 ms
53,712 KB
testcase_19 AC 113 ms
53,884 KB
testcase_20 AC 112 ms
53,972 KB
testcase_21 AC 109 ms
53,876 KB
testcase_22 AC 110 ms
53,892 KB
testcase_23 AC 111 ms
53,632 KB
testcase_24 AC 113 ms
53,944 KB
testcase_25 AC 101 ms
52,948 KB
testcase_26 AC 103 ms
52,876 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        System.out.println((int)(i+i*d));
    }
}
0