結果

問題 No.56 消費税
ユーザー mustonmuston
提出日時 2016-05-19 17:11:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-07-18 03:13:01
合計ジャッジ時間 6,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,352 KB
testcase_01 AC 112 ms
41,600 KB
testcase_02 AC 131 ms
41,428 KB
testcase_03 AC 133 ms
41,300 KB
testcase_04 AC 130 ms
41,260 KB
testcase_05 AC 116 ms
41,248 KB
testcase_06 AC 129 ms
40,680 KB
testcase_07 AC 114 ms
41,168 KB
testcase_08 AC 129 ms
41,900 KB
testcase_09 AC 128 ms
41,060 KB
testcase_10 AC 125 ms
41,192 KB
testcase_11 AC 125 ms
41,692 KB
testcase_12 AC 126 ms
41,260 KB
testcase_13 AC 138 ms
41,432 KB
testcase_14 AC 116 ms
41,224 KB
testcase_15 AC 124 ms
41,644 KB
testcase_16 AC 129 ms
41,268 KB
testcase_17 AC 129 ms
41,344 KB
testcase_18 AC 138 ms
41,504 KB
testcase_19 AC 123 ms
41,504 KB
testcase_20 AC 123 ms
40,572 KB
testcase_21 AC 125 ms
41,580 KB
testcase_22 AC 124 ms
41,464 KB
testcase_23 AC 130 ms
41,664 KB
testcase_24 AC 130 ms
41,504 KB
testcase_25 AC 129 ms
41,516 KB
testcase_26 AC 127 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
/*yukicoder No56 消費税*/
class No56{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    double d = scan.nextDouble();  //買いたいものの金額
    double p = scan.nextDouble();  //消費税
    //消費税をかけて実際の金額を出す
    double amount = (d*(100+p))/100;
    //実際の金額を出力
    System.out.println((int)amount);
  }
}
0