結果

問題 No.56 消費税
ユーザー papipenpapipen
提出日時 2017-03-26 01:20:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 1,990 ms
コンパイル使用メモリ 73,700 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-07-06 06:18:05
合計ジャッジ時間 6,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,028 KB
testcase_01 AC 132 ms
54,008 KB
testcase_02 AC 133 ms
54,012 KB
testcase_03 WA -
testcase_04 AC 131 ms
53,936 KB
testcase_05 AC 132 ms
53,828 KB
testcase_06 AC 134 ms
53,836 KB
testcase_07 AC 133 ms
53,708 KB
testcase_08 AC 133 ms
53,780 KB
testcase_09 AC 133 ms
53,884 KB
testcase_10 AC 133 ms
54,244 KB
testcase_11 AC 131 ms
54,408 KB
testcase_12 AC 131 ms
54,208 KB
testcase_13 AC 133 ms
54,256 KB
testcase_14 AC 133 ms
53,900 KB
testcase_15 AC 133 ms
53,776 KB
testcase_16 AC 130 ms
53,692 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = (int) (D * (P / 100.0 + 1));
    System.out.println(result);
  }
}
0