結果

問題 No.56 消費税
ユーザー mustonmuston
提出日時 2016-05-19 16:34:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 2,379 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-10-06 10:19:29
合計ジャッジ時間 6,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,912 KB
testcase_01 AC 122 ms
54,092 KB
testcase_02 AC 108 ms
41,076 KB
testcase_03 WA -
testcase_04 AC 118 ms
41,392 KB
testcase_05 AC 108 ms
41,328 KB
testcase_06 AC 128 ms
41,184 KB
testcase_07 AC 117 ms
40,956 KB
testcase_08 AC 120 ms
41,144 KB
testcase_09 AC 119 ms
41,228 KB
testcase_10 AC 117 ms
41,240 KB
testcase_11 AC 120 ms
41,108 KB
testcase_12 AC 108 ms
41,384 KB
testcase_13 AC 106 ms
41,108 KB
testcase_14 AC 119 ms
41,176 KB
testcase_15 AC 120 ms
41,276 KB
testcase_16 AC 121 ms
41,288 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.*;
/*yukicoder No56 消費税*/
class No56{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    double d = scan.nextInt();  //買いたいものの金額
    double p = scan.nextInt();  //消費税
    //消費税をかけて実際の金額を出す
    double amount = d*(1+p/100);
    //実際の金額を出力
    System.out.println((int)amount);
  }
}
0