結果

問題 No.56 消費税
ユーザー kameyama_skameyama_s
提出日時 2023-05-08 18:46:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 343 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-05-04 02:52:57
合計ジャッジ時間 5,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,496 KB
testcase_01 AC 110 ms
41,376 KB
testcase_02 AC 118 ms
41,120 KB
testcase_03 AC 115 ms
41,368 KB
testcase_04 AC 114 ms
41,040 KB
testcase_05 AC 110 ms
41,360 KB
testcase_06 AC 100 ms
40,396 KB
testcase_07 AC 118 ms
41,580 KB
testcase_08 AC 103 ms
40,092 KB
testcase_09 AC 116 ms
41,404 KB
testcase_10 AC 115 ms
41,004 KB
testcase_11 AC 114 ms
41,440 KB
testcase_12 AC 116 ms
41,252 KB
testcase_13 AC 101 ms
40,320 KB
testcase_14 AC 110 ms
41,124 KB
testcase_15 AC 102 ms
40,308 KB
testcase_16 AC 109 ms
41,472 KB
testcase_17 AC 117 ms
41,320 KB
testcase_18 AC 113 ms
41,316 KB
testcase_19 AC 115 ms
41,096 KB
testcase_20 AC 113 ms
41,268 KB
testcase_21 AC 109 ms
41,248 KB
testcase_22 AC 109 ms
41,280 KB
testcase_23 AC 105 ms
40,060 KB
testcase_24 AC 108 ms
40,008 KB
testcase_25 AC 122 ms
41,392 KB
testcase_26 AC 127 ms
41,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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