結果

問題 No.56 消費税
ユーザー show258show258
提出日時 2017-04-09 20:10:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-07-18 03:29:43
合計ジャッジ時間 6,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
52,512 KB
testcase_01 AC 113 ms
54,080 KB
testcase_02 AC 114 ms
54,220 KB
testcase_03 AC 107 ms
53,948 KB
testcase_04 AC 114 ms
54,104 KB
testcase_05 AC 114 ms
54,080 KB
testcase_06 AC 120 ms
54,152 KB
testcase_07 AC 117 ms
54,360 KB
testcase_08 AC 117 ms
54,212 KB
testcase_09 AC 114 ms
53,952 KB
testcase_10 AC 102 ms
54,008 KB
testcase_11 AC 102 ms
52,844 KB
testcase_12 AC 113 ms
54,052 KB
testcase_13 AC 115 ms
54,120 KB
testcase_14 AC 114 ms
54,216 KB
testcase_15 AC 119 ms
53,984 KB
testcase_16 AC 111 ms
53,468 KB
testcase_17 AC 120 ms
54,124 KB
testcase_18 AC 123 ms
53,968 KB
testcase_19 AC 128 ms
54,332 KB
testcase_20 AC 119 ms
54,060 KB
testcase_21 AC 116 ms
53,992 KB
testcase_22 AC 106 ms
53,012 KB
testcase_23 AC 117 ms
54,216 KB
testcase_24 AC 107 ms
52,728 KB
testcase_25 AC 122 ms
53,844 KB
testcase_26 AC 120 ms
54,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No56 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scannerオブジェクトを使う。
    Scanner sc = new Scanner(System.in);

    // ユキコダ Dを読み込む
    int d = sc.nextInt();
    // 消費税率 P%を読み込む
    int p = sc.nextInt();

    sc.close(); // 標準入力をクローズ

    //支払総額を表示
    System.out.println( d + d*p/100 );

  }
}
0