結果

問題 No.56 消費税
ユーザー villachvillach
提出日時 2017-10-13 17:47:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 3,665 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-11-17 11:26:50
合計ジャッジ時間 7,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,072 KB
testcase_01 AC 122 ms
41,180 KB
testcase_02 AC 123 ms
41,196 KB
testcase_03 AC 127 ms
41,136 KB
testcase_04 AC 114 ms
40,068 KB
testcase_05 AC 123 ms
41,396 KB
testcase_06 AC 123 ms
41,116 KB
testcase_07 AC 125 ms
41,344 KB
testcase_08 AC 110 ms
39,960 KB
testcase_09 AC 123 ms
41,072 KB
testcase_10 AC 122 ms
41,280 KB
testcase_11 AC 124 ms
41,420 KB
testcase_12 AC 124 ms
41,428 KB
testcase_13 AC 121 ms
40,960 KB
testcase_14 AC 127 ms
41,096 KB
testcase_15 AC 124 ms
41,036 KB
testcase_16 AC 125 ms
40,908 KB
testcase_17 AC 120 ms
41,360 KB
testcase_18 AC 107 ms
39,804 KB
testcase_19 AC 122 ms
41,240 KB
testcase_20 AC 120 ms
40,992 KB
testcase_21 AC 119 ms
41,252 KB
testcase_22 AC 109 ms
40,148 KB
testcase_23 AC 122 ms
41,264 KB
testcase_24 AC 123 ms
41,144 KB
testcase_25 AC 123 ms
41,300 KB
testcase_26 AC 123 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N56 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		double d = sc.nextInt();
		double p = sc.nextInt();
		double hoge = d * (1 + p*0.01);
		if(hoge - Math.floor(hoge) > 0.9999){
			hoge = Math.floor(hoge) + 1;
		}else{
			hoge = Math.floor(hoge);
		}
		System.out.println((int) hoge);
	}
}
0