結果

問題 No.56 消費税
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 11:15:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 70,816 KB
実行使用メモリ 58,548 KB
最終ジャッジ日時 2023-09-06 04:57:17
合計ジャッジ時間 6,911 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
55,872 KB
testcase_01 AC 135 ms
55,972 KB
testcase_02 AC 132 ms
55,628 KB
testcase_03 AC 136 ms
55,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 130 ms
56,040 KB
testcase_08 AC 133 ms
56,052 KB
testcase_09 AC 136 ms
55,872 KB
testcase_10 AC 133 ms
56,428 KB
testcase_11 AC 132 ms
56,200 KB
testcase_12 AC 134 ms
55,944 KB
testcase_13 AC 133 ms
55,816 KB
testcase_14 AC 133 ms
55,948 KB
testcase_15 AC 137 ms
55,848 KB
testcase_16 AC 136 ms
55,932 KB
testcase_17 WA -
testcase_18 AC 133 ms
56,536 KB
testcase_19 AC 134 ms
56,064 KB
testcase_20 AC 135 ms
55,928 KB
testcase_21 WA -
testcase_22 AC 136 ms
55,876 KB
testcase_23 AC 134 ms
55,940 KB
testcase_24 AC 130 ms
56,048 KB
testcase_25 AC 136 ms
56,616 KB
testcase_26 AC 131 ms
56,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		System.out.println((int)(s.nextInt()*(1+s.nextFloat()/100)));
	}
}
0