結果

問題 No.56 消費税
ユーザー mits58mits58
提出日時 2015-07-18 01:13:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-07-18 02:53:07
合計ジャッジ時間 5,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,784 KB
testcase_01 AC 102 ms
52,936 KB
testcase_02 AC 115 ms
53,796 KB
testcase_03 AC 96 ms
52,652 KB
testcase_04 AC 115 ms
54,160 KB
testcase_05 AC 115 ms
53,920 KB
testcase_06 AC 104 ms
52,624 KB
testcase_07 AC 115 ms
53,916 KB
testcase_08 AC 116 ms
54,032 KB
testcase_09 AC 107 ms
53,084 KB
testcase_10 AC 113 ms
53,780 KB
testcase_11 AC 114 ms
54,008 KB
testcase_12 AC 97 ms
52,588 KB
testcase_13 AC 101 ms
52,908 KB
testcase_14 AC 103 ms
53,024 KB
testcase_15 AC 102 ms
52,916 KB
testcase_16 AC 96 ms
52,528 KB
testcase_17 AC 114 ms
54,008 KB
testcase_18 AC 109 ms
53,536 KB
testcase_19 AC 114 ms
54,028 KB
testcase_20 AC 105 ms
52,908 KB
testcase_21 AC 113 ms
54,288 KB
testcase_22 AC 109 ms
53,796 KB
testcase_23 AC 113 ms
54,120 KB
testcase_24 AC 101 ms
52,892 KB
testcase_25 AC 106 ms
52,972 KB
testcase_26 AC 107 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int d=sc.nextInt();
        	int p=sc.nextInt();
        	System.out.println(d*(100+p)/100);
        }
    }
}
0