結果

問題 No.56 消費税
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 13:10:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-10-06 02:34:16
合計ジャッジ時間 6,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,228 KB
testcase_01 AC 128 ms
54,200 KB
testcase_02 AC 119 ms
53,540 KB
testcase_03 AC 114 ms
53,452 KB
testcase_04 AC 125 ms
54,048 KB
testcase_05 AC 122 ms
53,608 KB
testcase_06 AC 121 ms
54,028 KB
testcase_07 AC 122 ms
54,144 KB
testcase_08 AC 120 ms
54,088 KB
testcase_09 AC 112 ms
53,508 KB
testcase_10 AC 117 ms
53,504 KB
testcase_11 AC 125 ms
54,404 KB
testcase_12 AC 127 ms
54,016 KB
testcase_13 AC 122 ms
54,232 KB
testcase_14 AC 115 ms
53,624 KB
testcase_15 AC 127 ms
54,140 KB
testcase_16 AC 125 ms
54,236 KB
testcase_17 AC 112 ms
53,312 KB
testcase_18 AC 118 ms
53,816 KB
testcase_19 AC 129 ms
54,028 KB
testcase_20 AC 129 ms
54,204 KB
testcase_21 AC 123 ms
54,072 KB
testcase_22 AC 122 ms
53,512 KB
testcase_23 AC 114 ms
53,476 KB
testcase_24 AC 118 ms
53,888 KB
testcase_25 AC 114 ms
53,376 KB
testcase_26 AC 109 ms
53,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		double c = a + a*(b/100);
		System.out.println((int)c);
	}
}
0