結果

問題 No.56 消費税
ユーザー 37zigen37zigen
提出日時 2016-04-01 14:44:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 73,840 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-10-02 08:47:38
合計ジャッジ時間 6,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,532 KB
testcase_01 AC 143 ms
41,668 KB
testcase_02 AC 146 ms
41,436 KB
testcase_03 WA -
testcase_04 AC 144 ms
41,860 KB
testcase_05 AC 148 ms
41,596 KB
testcase_06 AC 141 ms
41,556 KB
testcase_07 AC 146 ms
41,620 KB
testcase_08 AC 144 ms
41,768 KB
testcase_09 AC 144 ms
41,540 KB
testcase_10 AC 148 ms
41,440 KB
testcase_11 AC 144 ms
41,912 KB
testcase_12 AC 144 ms
41,564 KB
testcase_13 AC 141 ms
41,336 KB
testcase_14 AC 144 ms
41,924 KB
testcase_15 AC 145 ms
41,472 KB
testcase_16 AC 148 ms
41,608 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 #

package yukicoder056;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double d=sc.nextDouble();
		double p=sc.nextDouble();
		System.out.println((int)(d*(1+p/100)));
	}
}
0