結果

問題 No.56 消費税
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 22:32:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 41,196 KB
最終ジャッジ日時 2024-07-04 18:46:34
合計ジャッジ時間 6,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,856 KB
testcase_01 AC 115 ms
40,964 KB
testcase_02 AC 99 ms
39,956 KB
testcase_03 AC 108 ms
41,032 KB
testcase_04 AC 112 ms
40,780 KB
testcase_05 AC 113 ms
40,952 KB
testcase_06 AC 117 ms
41,096 KB
testcase_07 AC 96 ms
40,224 KB
testcase_08 AC 107 ms
40,940 KB
testcase_09 AC 108 ms
41,048 KB
testcase_10 AC 107 ms
40,516 KB
testcase_11 AC 105 ms
40,912 KB
testcase_12 AC 106 ms
41,008 KB
testcase_13 AC 100 ms
39,956 KB
testcase_14 AC 122 ms
40,916 KB
testcase_15 AC 123 ms
40,876 KB
testcase_16 AC 119 ms
40,872 KB
testcase_17 AC 113 ms
41,196 KB
testcase_18 AC 104 ms
41,048 KB
testcase_19 AC 96 ms
39,652 KB
testcase_20 AC 98 ms
39,956 KB
testcase_21 AC 104 ms
40,020 KB
testcase_22 AC 111 ms
41,088 KB
testcase_23 AC 97 ms
39,880 KB
testcase_24 AC 98 ms
40,028 KB
testcase_25 AC 105 ms
40,916 KB
testcase_26 AC 102 ms
40,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        int price = Integer.valueOf(sc.next());
        int tax = Integer.valueOf(sc.next());

        double includeTax = price * (100 + tax) / 100;
        System.out.println((int) Math.floor(includeTax));
	}
}
0