結果

問題 No.56 消費税
ユーザー bellbell
提出日時 2021-02-11 00:45:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 2,838 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,920 KB
最終ジャッジ日時 2024-07-08 11:57:15
合計ジャッジ時間 6,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,920 KB
testcase_01 AC 123 ms
41,496 KB
testcase_02 AC 118 ms
40,272 KB
testcase_03 AC 122 ms
41,508 KB
testcase_04 AC 120 ms
41,264 KB
testcase_05 AC 105 ms
41,844 KB
testcase_06 AC 119 ms
40,360 KB
testcase_07 AC 123 ms
41,368 KB
testcase_08 AC 120 ms
41,408 KB
testcase_09 AC 108 ms
41,288 KB
testcase_10 AC 112 ms
41,252 KB
testcase_11 AC 125 ms
41,248 KB
testcase_12 AC 120 ms
41,388 KB
testcase_13 AC 122 ms
41,296 KB
testcase_14 AC 123 ms
41,420 KB
testcase_15 AC 119 ms
41,512 KB
testcase_16 AC 118 ms
41,424 KB
testcase_17 AC 118 ms
41,456 KB
testcase_18 AC 108 ms
41,176 KB
testcase_19 AC 118 ms
41,280 KB
testcase_20 AC 120 ms
40,972 KB
testcase_21 AC 108 ms
41,392 KB
testcase_22 AC 122 ms
41,460 KB
testcase_23 AC 117 ms
41,176 KB
testcase_24 AC 117 ms
40,296 KB
testcase_25 AC 133 ms
41,448 KB
testcase_26 AC 125 ms
41,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int D=sc.nextInt();
        int P=sc.nextInt();

        int ans=D*P/100;

        System.out.println(D+ans);

            sc.close();
    }
}
0