結果

問題 No.285 消費税2
ユーザー GrenacheGrenache
提出日時 2015-10-09 22:24:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 3,732 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-07-20 02:27:14
合計ジャッジ時間 7,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,224 KB
testcase_01 AC 123 ms
41,260 KB
testcase_02 AC 104 ms
40,092 KB
testcase_03 AC 120 ms
41,232 KB
testcase_04 AC 122 ms
41,616 KB
testcase_05 AC 108 ms
40,240 KB
testcase_06 AC 116 ms
41,016 KB
testcase_07 AC 110 ms
39,848 KB
testcase_08 AC 105 ms
39,876 KB
testcase_09 AC 119 ms
41,484 KB
testcase_10 AC 128 ms
41,288 KB
testcase_11 AC 116 ms
40,984 KB
testcase_12 AC 120 ms
41,328 KB
testcase_13 AC 107 ms
39,828 KB
testcase_14 AC 115 ms
41,468 KB
testcase_15 AC 102 ms
39,976 KB
testcase_16 AC 115 ms
41,144 KB
testcase_17 AC 103 ms
40,392 KB
testcase_18 AC 106 ms
40,376 KB
testcase_19 AC 108 ms
39,996 KB
testcase_20 AC 104 ms
40,308 KB
testcase_21 AC 111 ms
41,328 KB
testcase_22 AC 112 ms
41,040 KB
testcase_23 AC 110 ms
39,832 KB
testcase_24 AC 102 ms
40,352 KB
testcase_25 AC 119 ms
41,408 KB
testcase_26 AC 107 ms
40,220 KB
testcase_27 AC 110 ms
41,364 KB
testcase_28 AC 103 ms
40,308 KB
testcase_29 AC 100 ms
40,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder285 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long d = sc.nextLong();
        d *= 108;
        
        System.out.printf("%.12f\n", (double)d / 100);

        sc.close();
    }
}
0