結果

問題 No.56 消費税
ユーザー koukonkokoukonko
提出日時 2015-12-07 17:15:27
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 507 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 50,436 KB
最終ジャッジ日時 2024-07-18 03:00:39
合計ジャッジ時間 4,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,244 KB
testcase_01 AC 47 ms
50,296 KB
testcase_02 AC 49 ms
50,016 KB
testcase_03 AC 48 ms
50,380 KB
testcase_04 AC 49 ms
50,196 KB
testcase_05 AC 49 ms
50,004 KB
testcase_06 AC 48 ms
50,436 KB
testcase_07 AC 48 ms
50,016 KB
testcase_08 AC 49 ms
50,368 KB
testcase_09 AC 49 ms
50,120 KB
testcase_10 WA -
testcase_11 AC 48 ms
50,192 KB
testcase_12 AC 47 ms
50,240 KB
testcase_13 AC 49 ms
50,380 KB
testcase_14 AC 50 ms
50,200 KB
testcase_15 AC 49 ms
50,140 KB
testcase_16 AC 48 ms
50,412 KB
testcase_17 AC 48 ms
50,356 KB
testcase_18 AC 47 ms
49,936 KB
testcase_19 AC 49 ms
50,012 KB
testcase_20 AC 49 ms
50,384 KB
testcase_21 AC 50 ms
50,224 KB
testcase_22 AC 49 ms
50,380 KB
testcase_23 AC 49 ms
50,064 KB
testcase_24 AC 49 ms
50,384 KB
testcase_25 AC 49 ms
50,200 KB
testcase_26 AC 49 ms
50,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String[] box = buff.readLine().split(" ");
			int price = Integer.parseInt(box[0]);
			int tax = Integer.parseInt(box[1]);
			System.out.println(price + (int)(price * (tax / 100d)));
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0