結果

問題 No.56 消費税
ユーザー marumaru
提出日時 2016-03-22 20:56:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 3,259 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2024-07-18 03:08:18
合計ジャッジ時間 7,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,984 KB
testcase_01 AC 134 ms
53,900 KB
testcase_02 AC 133 ms
53,944 KB
testcase_03 AC 134 ms
54,228 KB
testcase_04 AC 134 ms
53,832 KB
testcase_05 AC 134 ms
53,828 KB
testcase_06 AC 133 ms
53,980 KB
testcase_07 AC 132 ms
54,052 KB
testcase_08 AC 133 ms
53,844 KB
testcase_09 AC 133 ms
54,084 KB
testcase_10 AC 134 ms
53,872 KB
testcase_11 AC 133 ms
54,008 KB
testcase_12 AC 131 ms
54,096 KB
testcase_13 AC 132 ms
53,900 KB
testcase_14 AC 134 ms
53,988 KB
testcase_15 AC 132 ms
54,076 KB
testcase_16 AC 136 ms
53,880 KB
testcase_17 AC 134 ms
54,172 KB
testcase_18 AC 133 ms
54,264 KB
testcase_19 AC 134 ms
53,988 KB
testcase_20 AC 132 ms
54,072 KB
testcase_21 AC 131 ms
54,100 KB
testcase_22 AC 133 ms
55,992 KB
testcase_23 AC 135 ms
53,960 KB
testcase_24 AC 136 ms
54,100 KB
testcase_25 AC 136 ms
53,824 KB
testcase_26 AC 136 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_56 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int price = stdIn.nextInt();
		int tax = stdIn.nextInt();
		
		System.out.println(price + (price * tax / 100));

	}
}
0