結果

問題 No.56 消費税
ユーザー yu_017yu_017
提出日時 2019-01-16 23:55:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 3,170 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-01 06:33:44
合計ジャッジ時間 7,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,960 KB
testcase_01 AC 134 ms
53,912 KB
testcase_02 AC 130 ms
54,112 KB
testcase_03 AC 131 ms
53,932 KB
testcase_04 AC 131 ms
54,172 KB
testcase_05 AC 132 ms
53,752 KB
testcase_06 AC 134 ms
53,820 KB
testcase_07 AC 132 ms
53,764 KB
testcase_08 AC 119 ms
52,572 KB
testcase_09 AC 130 ms
53,984 KB
testcase_10 AC 131 ms
53,784 KB
testcase_11 AC 132 ms
53,952 KB
testcase_12 AC 134 ms
54,304 KB
testcase_13 AC 134 ms
54,144 KB
testcase_14 AC 133 ms
53,504 KB
testcase_15 AC 117 ms
52,892 KB
testcase_16 AC 131 ms
53,904 KB
testcase_17 AC 133 ms
54,064 KB
testcase_18 AC 132 ms
53,976 KB
testcase_19 AC 132 ms
54,024 KB
testcase_20 AC 132 ms
54,168 KB
testcase_21 AC 132 ms
53,692 KB
testcase_22 AC 131 ms
53,728 KB
testcase_23 AC 132 ms
54,048 KB
testcase_24 AC 133 ms
53,644 KB
testcase_25 AC 131 ms
54,012 KB
testcase_26 AC 133 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000056 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		System.out.println(s.nextInt()*(100+s.nextInt())/100);
		s.close();
	}

}
0