結果

問題 No.56 消費税
ユーザー kou6839kou6839
提出日時 2014-11-19 13:40:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 54,924 KB
最終ジャッジ日時 2024-07-18 01:46:45
合計ジャッジ時間 7,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
54,428 KB
testcase_01 AC 162 ms
54,480 KB
testcase_02 AC 163 ms
54,624 KB
testcase_03 AC 161 ms
54,276 KB
testcase_04 AC 165 ms
54,376 KB
testcase_05 AC 168 ms
54,924 KB
testcase_06 AC 162 ms
54,408 KB
testcase_07 AC 162 ms
54,128 KB
testcase_08 AC 159 ms
54,420 KB
testcase_09 AC 166 ms
54,584 KB
testcase_10 AC 157 ms
54,324 KB
testcase_11 AC 161 ms
54,292 KB
testcase_12 AC 160 ms
54,032 KB
testcase_13 AC 161 ms
54,216 KB
testcase_14 AC 160 ms
54,292 KB
testcase_15 AC 165 ms
54,316 KB
testcase_16 AC 165 ms
54,248 KB
testcase_17 AC 163 ms
54,328 KB
testcase_18 AC 157 ms
54,276 KB
testcase_19 AC 162 ms
54,692 KB
testcase_20 AC 160 ms
54,080 KB
testcase_21 AC 158 ms
54,364 KB
testcase_22 AC 160 ms
54,124 KB
testcase_23 AC 161 ms
54,024 KB
testcase_24 AC 159 ms
54,140 KB
testcase_25 AC 162 ms
54,508 KB
testcase_26 AC 159 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x= sc.nextInt();
		double y=sc.nextDouble();
		System.out.println((int)(x*(100+y)/100));
	}
}	
0