結果

問題 No.285 消費税2
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 14:14:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-10-04 08:34:49
合計ジャッジ時間 7,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,664 KB
testcase_01 AC 138 ms
41,576 KB
testcase_02 AC 139 ms
41,520 KB
testcase_03 AC 139 ms
41,388 KB
testcase_04 AC 138 ms
41,576 KB
testcase_05 AC 136 ms
40,624 KB
testcase_06 AC 137 ms
41,744 KB
testcase_07 AC 138 ms
41,460 KB
testcase_08 AC 137 ms
41,680 KB
testcase_09 AC 139 ms
41,396 KB
testcase_10 AC 136 ms
41,304 KB
testcase_11 AC 124 ms
41,504 KB
testcase_12 AC 135 ms
41,264 KB
testcase_13 AC 130 ms
41,564 KB
testcase_14 AC 135 ms
41,460 KB
testcase_15 AC 133 ms
41,436 KB
testcase_16 AC 137 ms
41,600 KB
testcase_17 AC 131 ms
41,508 KB
testcase_18 AC 139 ms
41,392 KB
testcase_19 AC 137 ms
41,632 KB
testcase_20 AC 136 ms
41,544 KB
testcase_21 AC 132 ms
41,704 KB
testcase_22 WA -
testcase_23 AC 136 ms
41,668 KB
testcase_24 AC 134 ms
41,728 KB
testcase_25 AC 134 ms
41,744 KB
testcase_26 AC 139 ms
41,444 KB
testcase_27 AC 127 ms
41,060 KB
testcase_28 AC 137 ms
41,732 KB
testcase_29 AC 140 ms
41,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    double D = sc.nextDouble();
    double ans = 0.08 * D;
    ans += D;
    System.out.println(ans);
  }
}
0