結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,952 KB
testcase_01 AC 118 ms
54,060 KB
testcase_02 AC 114 ms
53,772 KB
testcase_03 AC 132 ms
54,180 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 119 ms
53,900 KB
testcase_08 AC 121 ms
53,784 KB
testcase_09 AC 119 ms
53,880 KB
testcase_10 AC 122 ms
54,036 KB
testcase_11 AC 109 ms
52,992 KB
testcase_12 AC 122 ms
53,808 KB
testcase_13 AC 118 ms
54,100 KB
testcase_14 AC 119 ms
54,064 KB
testcase_15 AC 121 ms
54,128 KB
testcase_16 AC 122 ms
53,932 KB
testcase_17 WA -
testcase_18 AC 123 ms
53,948 KB
testcase_19 AC 117 ms
54,012 KB
testcase_20 AC 108 ms
52,888 KB
testcase_21 WA -
testcase_22 AC 117 ms
53,868 KB
testcase_23 AC 117 ms
53,912 KB
testcase_24 AC 107 ms
52,536 KB
testcase_25 AC 121 ms
54,000 KB
testcase_26 AC 117 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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