結果

問題 No.56 消費税
ユーザー paraskevidekatriaphobiaparaskevidekatriaphobia
提出日時 2018-12-14 15:44:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 3,316 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 54,568 KB
最終ジャッジ日時 2024-09-25 05:10:43
合計ジャッジ時間 7,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,056 KB
testcase_01 AC 130 ms
54,032 KB
testcase_02 AC 127 ms
54,184 KB
testcase_03 AC 126 ms
54,236 KB
testcase_04 AC 129 ms
54,028 KB
testcase_05 AC 127 ms
54,016 KB
testcase_06 AC 127 ms
53,900 KB
testcase_07 AC 129 ms
54,056 KB
testcase_08 AC 129 ms
54,172 KB
testcase_09 AC 128 ms
54,084 KB
testcase_10 AC 130 ms
54,104 KB
testcase_11 AC 130 ms
54,092 KB
testcase_12 AC 129 ms
54,048 KB
testcase_13 AC 133 ms
54,256 KB
testcase_14 AC 130 ms
54,188 KB
testcase_15 AC 134 ms
54,412 KB
testcase_16 AC 132 ms
53,912 KB
testcase_17 AC 130 ms
54,480 KB
testcase_18 AC 130 ms
54,092 KB
testcase_19 AC 131 ms
54,256 KB
testcase_20 AC 136 ms
54,568 KB
testcase_21 AC 116 ms
53,148 KB
testcase_22 AC 130 ms
54,176 KB
testcase_23 AC 128 ms
53,888 KB
testcase_24 AC 127 ms
54,204 KB
testcase_25 AC 129 ms
54,244 KB
testcase_26 AC 129 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package yukicoder;

import java.util.Scanner;

/**
 *
 * @author hjhto
 */
public class YukicoderNo56 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        System.out.println((a*(100+b))/100);
    }
    
}
0