結果

問題 No.56 消費税
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 18:19:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-07-18 03:22:43
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,584 KB
testcase_01 AC 124 ms
53,976 KB
testcase_02 AC 124 ms
53,632 KB
testcase_03 AC 126 ms
54,440 KB
testcase_04 AC 126 ms
53,680 KB
testcase_05 AC 124 ms
53,548 KB
testcase_06 AC 135 ms
54,500 KB
testcase_07 AC 128 ms
54,284 KB
testcase_08 AC 132 ms
54,280 KB
testcase_09 AC 133 ms
54,324 KB
testcase_10 AC 113 ms
53,844 KB
testcase_11 AC 126 ms
54,364 KB
testcase_12 AC 136 ms
54,396 KB
testcase_13 AC 126 ms
54,236 KB
testcase_14 AC 118 ms
53,812 KB
testcase_15 AC 111 ms
53,256 KB
testcase_16 AC 130 ms
54,320 KB
testcase_17 AC 125 ms
54,376 KB
testcase_18 AC 113 ms
54,364 KB
testcase_19 AC 122 ms
54,532 KB
testcase_20 AC 136 ms
54,120 KB
testcase_21 AC 129 ms
54,224 KB
testcase_22 AC 130 ms
54,316 KB
testcase_23 AC 124 ms
54,004 KB
testcase_24 AC 126 ms
54,548 KB
testcase_25 AC 112 ms
53,240 KB
testcase_26 AC 115 ms
53,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question050
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		double 	d = scan.nextDouble();
		double  p = scan.nextDouble()/100;
		
		System.out.println((int)(d*p+d));
	}
}
0