結果

問題 No.56 消費税
ユーザー metasequometasequo
提出日時 2015-05-10 23:13:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 212 bytes
コンパイル時間 2,862 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-07-18 02:49:15
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,756 KB
testcase_01 AC 117 ms
54,188 KB
testcase_02 AC 102 ms
52,972 KB
testcase_03 AC 106 ms
52,860 KB
testcase_04 AC 115 ms
54,128 KB
testcase_05 AC 113 ms
53,972 KB
testcase_06 AC 115 ms
54,288 KB
testcase_07 AC 120 ms
54,128 KB
testcase_08 AC 119 ms
54,128 KB
testcase_09 AC 107 ms
53,028 KB
testcase_10 AC 120 ms
54,312 KB
testcase_11 AC 116 ms
54,244 KB
testcase_12 AC 115 ms
54,116 KB
testcase_13 AC 105 ms
53,056 KB
testcase_14 AC 118 ms
53,964 KB
testcase_15 AC 122 ms
54,208 KB
testcase_16 AC 104 ms
53,104 KB
testcase_17 AC 118 ms
54,016 KB
testcase_18 AC 115 ms
54,136 KB
testcase_19 AC 118 ms
53,944 KB
testcase_20 AC 119 ms
54,228 KB
testcase_21 AC 103 ms
52,760 KB
testcase_22 AC 115 ms
54,212 KB
testcase_23 AC 115 ms
54,096 KB
testcase_24 AC 106 ms
52,976 KB
testcase_25 AC 102 ms
52,664 KB
testcase_26 AC 119 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main56 {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int D = s.nextInt(), N = s.nextInt();
		System.out.println(D * N / 100 + D);
	}
}
0