結果

問題 No.56 消費税
ユーザー aparachia14aparachia14
提出日時 2016-01-12 23:23:56
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 903 bytes
コンパイル時間 3,263 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 50,416 KB
最終ジャッジ日時 2024-07-18 03:02:54
合計ジャッジ時間 4,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,356 KB
testcase_01 AC 52 ms
50,372 KB
testcase_02 AC 52 ms
49,904 KB
testcase_03 AC 50 ms
50,052 KB
testcase_04 AC 48 ms
50,084 KB
testcase_05 AC 48 ms
50,256 KB
testcase_06 AC 49 ms
50,348 KB
testcase_07 AC 50 ms
49,988 KB
testcase_08 AC 52 ms
50,316 KB
testcase_09 AC 49 ms
50,328 KB
testcase_10 WA -
testcase_11 AC 47 ms
50,316 KB
testcase_12 AC 47 ms
49,944 KB
testcase_13 AC 47 ms
50,124 KB
testcase_14 AC 50 ms
50,356 KB
testcase_15 AC 50 ms
50,348 KB
testcase_16 AC 50 ms
50,248 KB
testcase_17 AC 51 ms
50,304 KB
testcase_18 AC 49 ms
49,940 KB
testcase_19 AC 49 ms
50,364 KB
testcase_20 AC 47 ms
50,352 KB
testcase_21 AC 48 ms
50,416 KB
testcase_22 AC 48 ms
50,216 KB
testcase_23 AC 48 ms
50,120 KB
testcase_24 AC 48 ms
50,104 KB
testcase_25 AC 48 ms
50,336 KB
testcase_26 AC 50 ms
50,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//No.56 消費税
public class ConsumptionTax {

	public static void main(String[] args) throws IOException {
		// TODO 自動生成されたメソッド・スタブ
		//入力された価格
		int price;
		//消費税率
		int taxrate;
		//入力値
		String input;
		//実際の価格
		int realPrice;
		//消費税額
		double taxPrice;
		
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		input = in.readLine();
		//入力値を分割してpriceとtaxrateに格納する。
		String[] temp = input.split(" ");
		price = Integer.parseInt(temp[0]);
		taxrate = Integer.parseInt(temp[1]);
		
		//消費税額を計算
		taxPrice = Math.floor((taxrate * 0.01) * price);
		//実際の価格を計算
		realPrice = price + (int)taxPrice;
		
		System.out.println(realPrice);

	}

}
0