結果

問題 No.56 消費税
ユーザー OkyokyoOkyokyo
提出日時 2021-04-21 16:10:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 3,066 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-07-04 06:02:41
合計ジャッジ時間 7,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,852 KB
testcase_01 AC 123 ms
41,460 KB
testcase_02 AC 125 ms
41,600 KB
testcase_03 AC 122 ms
41,344 KB
testcase_04 AC 105 ms
40,040 KB
testcase_05 AC 121 ms
41,276 KB
testcase_06 AC 125 ms
41,440 KB
testcase_07 AC 121 ms
41,396 KB
testcase_08 AC 127 ms
41,260 KB
testcase_09 AC 123 ms
41,560 KB
testcase_10 AC 121 ms
41,608 KB
testcase_11 AC 105 ms
40,064 KB
testcase_12 AC 120 ms
41,232 KB
testcase_13 AC 122 ms
41,684 KB
testcase_14 AC 121 ms
41,568 KB
testcase_15 AC 103 ms
39,904 KB
testcase_16 AC 118 ms
41,316 KB
testcase_17 AC 118 ms
41,160 KB
testcase_18 AC 121 ms
41,424 KB
testcase_19 AC 118 ms
41,276 KB
testcase_20 AC 121 ms
41,200 KB
testcase_21 AC 126 ms
41,404 KB
testcase_22 AC 119 ms
41,480 KB
testcase_23 AC 118 ms
41,416 KB
testcase_24 AC 123 ms
41,268 KB
testcase_25 AC 117 ms
41,020 KB
testcase_26 AC 116 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class main{
    public static void main(String[] args){
       Scanner scan = new Scanner(System.in);
       int D=scan.nextInt();
       int P=scan.nextInt();
       
       
       D+=Math.floor(D*P/(100));
       
       System.out.println(D);
    }
}
0