結果

問題 No.56 消費税
ユーザー ser geyser gey
提出日時 2020-05-12 14:13:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-09-13 12:03:49
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,100 KB
testcase_01 AC 130 ms
53,948 KB
testcase_02 AC 132 ms
53,840 KB
testcase_03 WA -
testcase_04 AC 127 ms
53,888 KB
testcase_05 AC 116 ms
52,968 KB
testcase_06 AC 131 ms
53,844 KB
testcase_07 AC 127 ms
53,944 KB
testcase_08 AC 128 ms
53,732 KB
testcase_09 AC 118 ms
53,100 KB
testcase_10 AC 129 ms
53,672 KB
testcase_11 AC 133 ms
53,848 KB
testcase_12 AC 129 ms
54,040 KB
testcase_13 AC 132 ms
53,944 KB
testcase_14 AC 131 ms
54,020 KB
testcase_15 AC 129 ms
54,076 KB
testcase_16 AC 131 ms
53,948 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
public static void main(String[] args){
	Scanner scan =new Scanner(System.in);
	int price = scan.nextInt();
	int tax = scan.nextInt();
	double yuki ;
	yuki = price * (1+0.01*tax);
	System.out.println((int)yuki);
}
}
0