結果

問題 No.56 消費税
ユーザー paraskevidekatriaphobiaparaskevidekatriaphobia
提出日時 2018-12-14 15:44:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 5,128 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 57,696 KB
最終ジャッジ日時 2023-10-25 10:08:13
合計ジャッジ時間 7,107 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
57,600 KB
testcase_01 AC 117 ms
57,484 KB
testcase_02 AC 113 ms
57,472 KB
testcase_03 AC 125 ms
57,216 KB
testcase_04 AC 125 ms
55,444 KB
testcase_05 AC 124 ms
57,696 KB
testcase_06 AC 118 ms
57,432 KB
testcase_07 AC 115 ms
55,704 KB
testcase_08 AC 117 ms
57,356 KB
testcase_09 AC 114 ms
57,488 KB
testcase_10 AC 117 ms
57,208 KB
testcase_11 AC 113 ms
57,444 KB
testcase_12 AC 122 ms
57,624 KB
testcase_13 AC 128 ms
57,280 KB
testcase_14 AC 133 ms
57,464 KB
testcase_15 AC 129 ms
57,624 KB
testcase_16 AC 127 ms
57,220 KB
testcase_17 AC 133 ms
57,552 KB
testcase_18 AC 125 ms
57,580 KB
testcase_19 AC 115 ms
57,420 KB
testcase_20 AC 105 ms
56,296 KB
testcase_21 AC 114 ms
57,272 KB
testcase_22 AC 120 ms
57,420 KB
testcase_23 AC 119 ms
57,416 KB
testcase_24 AC 116 ms
57,480 KB
testcase_25 AC 110 ms
56,188 KB
testcase_26 AC 115 ms
57,208 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