結果

問題 No.56 消費税
ユーザー CavasiroCavasiro
提出日時 2020-04-15 15:44:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 73,592 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-10-01 18:46:53
合計ジャッジ時間 6,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,252 KB
testcase_01 AC 112 ms
40,860 KB
testcase_02 AC 112 ms
41,164 KB
testcase_03 AC 113 ms
40,896 KB
testcase_04 AC 115 ms
41,316 KB
testcase_05 AC 104 ms
40,460 KB
testcase_06 AC 108 ms
40,080 KB
testcase_07 AC 117 ms
41,392 KB
testcase_08 AC 104 ms
40,148 KB
testcase_09 AC 115 ms
41,100 KB
testcase_10 AC 116 ms
41,304 KB
testcase_11 AC 115 ms
41,320 KB
testcase_12 AC 116 ms
41,036 KB
testcase_13 AC 103 ms
40,280 KB
testcase_14 AC 114 ms
41,120 KB
testcase_15 AC 103 ms
40,084 KB
testcase_16 AC 99 ms
39,640 KB
testcase_17 AC 111 ms
41,148 KB
testcase_18 AC 113 ms
41,140 KB
testcase_19 AC 113 ms
40,984 KB
testcase_20 AC 119 ms
40,892 KB
testcase_21 AC 111 ms
39,864 KB
testcase_22 AC 114 ms
41,404 KB
testcase_23 AC 114 ms
40,368 KB
testcase_24 AC 117 ms
41,240 KB
testcase_25 AC 117 ms
41,048 KB
testcase_26 AC 113 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int p = sc.nextInt();
		System.out.println(d+(d*p/100));
	}
}
0