結果

問題 No.285 消費税2
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 20:50:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 3,442 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-10-09 13:42:56
合計ジャッジ時間 8,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,672 KB
testcase_01 AC 148 ms
41,668 KB
testcase_02 AC 142 ms
41,592 KB
testcase_03 AC 147 ms
41,160 KB
testcase_04 AC 147 ms
41,320 KB
testcase_05 AC 139 ms
41,428 KB
testcase_06 AC 139 ms
41,460 KB
testcase_07 AC 145 ms
41,572 KB
testcase_08 AC 147 ms
41,544 KB
testcase_09 AC 141 ms
41,228 KB
testcase_10 AC 152 ms
41,412 KB
testcase_11 AC 141 ms
41,436 KB
testcase_12 AC 137 ms
40,660 KB
testcase_13 AC 143 ms
41,592 KB
testcase_14 AC 147 ms
41,436 KB
testcase_15 AC 140 ms
41,064 KB
testcase_16 AC 142 ms
41,448 KB
testcase_17 AC 145 ms
41,200 KB
testcase_18 AC 144 ms
41,464 KB
testcase_19 AC 140 ms
41,792 KB
testcase_20 AC 131 ms
40,996 KB
testcase_21 AC 145 ms
41,496 KB
testcase_22 AC 143 ms
41,476 KB
testcase_23 AC 148 ms
41,636 KB
testcase_24 AC 148 ms
41,428 KB
testcase_25 AC 145 ms
41,236 KB
testcase_26 AC 147 ms
41,592 KB
testcase_27 AC 142 ms
41,588 KB
testcase_28 AC 141 ms
41,444 KB
testcase_29 AC 144 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.text.DecimalFormat;

public class Exercise82{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    double price = sc.nextDouble() * 1.08;

    DecimalFormat df = new DecimalFormat("############.##");

    System.out.println(df.format(price));
  }
}
0