結果

問題 No.56 消費税
ユーザー kazapyon27kazapyon27
提出日時 2017-05-06 21:38:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 3,841 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-09-14 14:05:08
合計ジャッジ時間 8,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,812 KB
testcase_01 AC 134 ms
41,304 KB
testcase_02 AC 133 ms
41,280 KB
testcase_03 AC 131 ms
40,912 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 132 ms
41,112 KB
testcase_09 AC 131 ms
41,340 KB
testcase_10 AC 128 ms
41,472 KB
testcase_11 AC 131 ms
41,396 KB
testcase_12 AC 132 ms
41,160 KB
testcase_13 AC 134 ms
41,324 KB
testcase_14 AC 133 ms
41,196 KB
testcase_15 AC 132 ms
41,008 KB
testcase_16 AC 131 ms
41,056 KB
testcase_17 AC 132 ms
41,216 KB
testcase_18 AC 132 ms
41,196 KB
testcase_19 AC 132 ms
41,136 KB
testcase_20 AC 131 ms
40,996 KB
testcase_21 AC 131 ms
41,280 KB
testcase_22 AC 136 ms
41,240 KB
testcase_23 AC 134 ms
41,040 KB
testcase_24 AC 133 ms
40,672 KB
testcase_25 AC 132 ms
41,368 KB
testcase_26 AC 135 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.56 消費税*/
import java.util.*;
public class No56 {
	public static void main(String[] args) {
		try(Scanner input = new Scanner(System.in)){
			byte tax;
			int zeinuki;
			zeinuki=input.nextInt();
			tax=input.nextByte();
			System.out.println((int)(zeinuki+zeinuki*tax/100f));
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0