結果

問題 No.56 消費税
ユーザー jimanojimano
提出日時 2017-05-05 19:41:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 50,528 KB
最終ジャッジ日時 2024-09-14 08:44:24
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,160 KB
testcase_01 AC 54 ms
50,084 KB
testcase_02 AC 53 ms
50,344 KB
testcase_03 AC 54 ms
50,148 KB
testcase_04 AC 53 ms
49,704 KB
testcase_05 AC 52 ms
50,116 KB
testcase_06 AC 53 ms
49,932 KB
testcase_07 AC 54 ms
50,020 KB
testcase_08 AC 54 ms
49,952 KB
testcase_09 AC 54 ms
50,164 KB
testcase_10 AC 54 ms
49,828 KB
testcase_11 AC 54 ms
50,104 KB
testcase_12 AC 54 ms
50,204 KB
testcase_13 AC 54 ms
50,160 KB
testcase_14 AC 55 ms
50,052 KB
testcase_15 AC 55 ms
50,040 KB
testcase_16 AC 54 ms
49,828 KB
testcase_17 AC 54 ms
50,204 KB
testcase_18 AC 54 ms
49,836 KB
testcase_19 AC 53 ms
50,228 KB
testcase_20 AC 54 ms
50,192 KB
testcase_21 AC 55 ms
50,212 KB
testcase_22 AC 53 ms
50,276 KB
testcase_23 AC 53 ms
50,340 KB
testcase_24 AC 54 ms
50,168 KB
testcase_25 AC 54 ms
50,528 KB
testcase_26 AC 54 ms
50,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			int d = Integer.parseInt(str[0]);
			double p = (double)Integer.parseInt(str[1]) / 100;
			int price = (int) (d + (d * p));
			System.out.println(price);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0