結果

問題 No.56 消費税
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 18:44:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 3,442 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 37,436 KB
最終ジャッジ日時 2024-04-28 17:13:46
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,436 KB
testcase_01 AC 53 ms
37,256 KB
testcase_02 AC 54 ms
37,276 KB
testcase_03 AC 54 ms
37,212 KB
testcase_04 AC 54 ms
37,352 KB
testcase_05 AC 53 ms
37,436 KB
testcase_06 AC 53 ms
37,080 KB
testcase_07 AC 53 ms
37,184 KB
testcase_08 AC 55 ms
36,928 KB
testcase_09 AC 55 ms
37,140 KB
testcase_10 AC 52 ms
37,436 KB
testcase_11 AC 54 ms
37,280 KB
testcase_12 AC 54 ms
37,264 KB
testcase_13 AC 53 ms
37,184 KB
testcase_14 AC 53 ms
37,308 KB
testcase_15 AC 53 ms
37,436 KB
testcase_16 AC 54 ms
37,096 KB
testcase_17 AC 55 ms
36,812 KB
testcase_18 AC 54 ms
37,036 KB
testcase_19 AC 53 ms
37,352 KB
testcase_20 AC 53 ms
36,952 KB
testcase_21 AC 55 ms
37,436 KB
testcase_22 AC 54 ms
37,188 KB
testcase_23 AC 53 ms
37,436 KB
testcase_24 AC 53 ms
37,328 KB
testcase_25 AC 55 ms
37,392 KB
testcase_26 AC 54 ms
37,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00056 {

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

		String[] input = new String[2];

		try {
			input = bufferedReader.readLine().split(" ");

			Long cost = Long.parseLong(input[0]);
			double tax = Double.parseDouble(input[1]) * 0.01;

			System.out.println(calculation(cost, tax));

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


	public static Long calculation(long cost, double tax) {
		return (long) (cost + cost * tax);
	}
}
0