結果

問題 No.56 消費税
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 11:15:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 3,001 ms
コンパイル使用メモリ 74,076 KB
実行使用メモリ 54,820 KB
最終ジャッジ日時 2024-06-23 23:41:46
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,536 KB
testcase_01 AC 145 ms
54,412 KB
testcase_02 AC 129 ms
53,736 KB
testcase_03 AC 145 ms
54,684 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 141 ms
54,508 KB
testcase_08 AC 148 ms
54,116 KB
testcase_09 AC 143 ms
54,028 KB
testcase_10 AC 145 ms
54,360 KB
testcase_11 AC 144 ms
54,408 KB
testcase_12 AC 145 ms
54,192 KB
testcase_13 AC 148 ms
54,180 KB
testcase_14 AC 154 ms
54,680 KB
testcase_15 AC 145 ms
54,140 KB
testcase_16 AC 145 ms
54,560 KB
testcase_17 WA -
testcase_18 AC 144 ms
54,656 KB
testcase_19 AC 145 ms
54,500 KB
testcase_20 AC 142 ms
54,640 KB
testcase_21 WA -
testcase_22 AC 144 ms
54,484 KB
testcase_23 AC 145 ms
54,332 KB
testcase_24 AC 143 ms
54,356 KB
testcase_25 AC 139 ms
54,624 KB
testcase_26 AC 141 ms
54,452 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