結果

問題 No.56 消費税
ユーザー papipenpapipen
提出日時 2017-03-26 01:45:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-07-18 03:29:07
合計ジャッジ時間 5,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,080 KB
testcase_01 AC 106 ms
41,328 KB
testcase_02 AC 119 ms
41,336 KB
testcase_03 AC 110 ms
41,072 KB
testcase_04 AC 124 ms
41,148 KB
testcase_05 AC 129 ms
41,200 KB
testcase_06 AC 130 ms
41,268 KB
testcase_07 AC 122 ms
41,116 KB
testcase_08 AC 125 ms
41,084 KB
testcase_09 AC 121 ms
41,352 KB
testcase_10 AC 114 ms
41,200 KB
testcase_11 AC 116 ms
41,220 KB
testcase_12 AC 120 ms
41,220 KB
testcase_13 AC 120 ms
41,440 KB
testcase_14 AC 120 ms
41,052 KB
testcase_15 AC 118 ms
40,944 KB
testcase_16 AC 122 ms
41,024 KB
testcase_17 AC 108 ms
40,700 KB
testcase_18 AC 124 ms
41,100 KB
testcase_19 AC 119 ms
41,020 KB
testcase_20 AC 118 ms
41,036 KB
testcase_21 AC 114 ms
41,136 KB
testcase_22 AC 118 ms
41,100 KB
testcase_23 AC 104 ms
41,524 KB
testcase_24 AC 116 ms
41,300 KB
testcase_25 AC 116 ms
41,128 KB
testcase_26 AC 128 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Syohizei{
  public static void main(String args[]){
    Scanner s = new Scanner(System.in);
    int D = s.nextInt();
    int P = s.nextInt();
    int result = D * (P + 100) / 100;
    System.out.println(result);
  }
}
0