結果

問題 No.56 消費税
ユーザー doyazaki012doyazaki012
提出日時 2015-04-24 17:54:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 56,044 KB
最終ジャッジ日時 2024-07-18 02:48:09
合計ジャッジ時間 5,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,076 KB
testcase_01 AC 121 ms
53,960 KB
testcase_02 AC 104 ms
52,968 KB
testcase_03 AC 112 ms
53,980 KB
testcase_04 AC 113 ms
53,784 KB
testcase_05 AC 121 ms
53,968 KB
testcase_06 AC 122 ms
53,884 KB
testcase_07 AC 112 ms
53,912 KB
testcase_08 AC 113 ms
53,948 KB
testcase_09 AC 112 ms
53,948 KB
testcase_10 AC 106 ms
53,996 KB
testcase_11 AC 127 ms
53,908 KB
testcase_12 AC 125 ms
54,032 KB
testcase_13 AC 123 ms
56,044 KB
testcase_14 AC 114 ms
54,116 KB
testcase_15 AC 101 ms
53,064 KB
testcase_16 AC 114 ms
54,212 KB
testcase_17 AC 112 ms
53,944 KB
testcase_18 AC 102 ms
53,060 KB
testcase_19 AC 116 ms
54,108 KB
testcase_20 AC 119 ms
54,056 KB
testcase_21 AC 125 ms
53,856 KB
testcase_22 AC 118 ms
53,880 KB
testcase_23 AC 119 ms
54,108 KB
testcase_24 AC 106 ms
52,764 KB
testcase_25 AC 125 ms
54,316 KB
testcase_26 AC 117 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Yuki56{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int d = stdIn.nextInt();
		int p = stdIn.nextInt();

		double x = d+(d*p/100.0);
		int answer = (int)x;
		System.out.println(answer);
	}
}
0