結果

問題 No.285 消費税2
ユーザー tsunabittsunabit
提出日時 2019-05-26 18:08:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-09-17 15:19:00
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 114 ms
54,128 KB
testcase_02 AC 114 ms
54,036 KB
testcase_03 AC 124 ms
53,904 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 114 ms
53,884 KB
testcase_07 AC 114 ms
54,124 KB
testcase_08 AC 106 ms
54,008 KB
testcase_09 WA -
testcase_10 AC 113 ms
54,172 KB
testcase_11 AC 104 ms
53,136 KB
testcase_12 AC 113 ms
54,156 KB
testcase_13 AC 112 ms
54,124 KB
testcase_14 WA -
testcase_15 AC 117 ms
53,980 KB
testcase_16 WA -
testcase_17 AC 101 ms
53,044 KB
testcase_18 AC 104 ms
52,800 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 115 ms
54,032 KB
testcase_24 AC 118 ms
54,044 KB
testcase_25 WA -
testcase_26 AC 123 ms
54,268 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 112 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;
import java.util.Arrays;

public class No285 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        Long d = s.nextLong();
        System.out.println(d * 1.08);
    }
}
0