結果

問題 No.56 消費税
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-23 19:45:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 5,112 ms
コンパイル使用メモリ 80,768 KB
実行使用メモリ 50,360 KB
最終ジャッジ日時 2024-07-18 02:47:59
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,204 KB
testcase_01 AC 50 ms
50,296 KB
testcase_02 AC 51 ms
50,004 KB
testcase_03 AC 48 ms
50,268 KB
testcase_04 AC 48 ms
50,164 KB
testcase_05 AC 46 ms
50,180 KB
testcase_06 AC 46 ms
50,360 KB
testcase_07 AC 47 ms
50,248 KB
testcase_08 AC 45 ms
50,328 KB
testcase_09 AC 49 ms
50,248 KB
testcase_10 AC 49 ms
50,004 KB
testcase_11 AC 49 ms
50,224 KB
testcase_12 AC 50 ms
50,192 KB
testcase_13 AC 48 ms
50,256 KB
testcase_14 AC 48 ms
50,228 KB
testcase_15 AC 47 ms
50,296 KB
testcase_16 AC 48 ms
49,992 KB
testcase_17 AC 49 ms
50,268 KB
testcase_18 AC 47 ms
49,860 KB
testcase_19 AC 49 ms
50,288 KB
testcase_20 AC 47 ms
50,292 KB
testcase_21 AC 47 ms
50,340 KB
testcase_22 AC 45 ms
50,180 KB
testcase_23 AC 46 ms
49,920 KB
testcase_24 AC 47 ms
50,228 KB
testcase_25 AC 45 ms
50,224 KB
testcase_26 AC 47 ms
49,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;


public class No056 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String[] tmp = br.readLine().split(" ");
            int D = Integer.parseInt(tmp[0]);
            int P = Integer.parseInt(tmp[1]);
            
            int total = D + D * P / 100;
            
            System.out.println(total);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0