結果

問題 No.56 消費税
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-10 12:42:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 2,810 ms
コンパイル使用メモリ 75,752 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-07-18 03:11:55
合計ジャッジ時間 6,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,008 KB
testcase_01 AC 113 ms
41,324 KB
testcase_02 AC 110 ms
41,280 KB
testcase_03 AC 97 ms
39,868 KB
testcase_04 AC 100 ms
40,916 KB
testcase_05 AC 110 ms
40,968 KB
testcase_06 AC 99 ms
41,100 KB
testcase_07 AC 114 ms
41,120 KB
testcase_08 AC 114 ms
41,644 KB
testcase_09 AC 113 ms
41,052 KB
testcase_10 AC 113 ms
39,940 KB
testcase_11 AC 96 ms
41,288 KB
testcase_12 AC 109 ms
41,124 KB
testcase_13 AC 108 ms
41,076 KB
testcase_14 AC 101 ms
40,816 KB
testcase_15 AC 112 ms
40,972 KB
testcase_16 AC 98 ms
41,220 KB
testcase_17 AC 105 ms
41,032 KB
testcase_18 AC 113 ms
40,832 KB
testcase_19 AC 105 ms
40,928 KB
testcase_20 AC 101 ms
41,224 KB
testcase_21 AC 116 ms
41,388 KB
testcase_22 AC 112 ms
40,972 KB
testcase_23 AC 114 ms
41,172 KB
testcase_24 AC 111 ms
41,088 KB
testcase_25 AC 117 ms
41,484 KB
testcase_26 AC 118 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki4 {
	
	public static void main(String[] args) {
		
		Scanner scan = new Scanner(System.in);
		int d = scan.nextInt();
		int p = scan.nextInt();
		scan.close();
		int answer = (int) (d +(d)*(0.01*p));
		System.out.println(answer);
	}
}
0