結果

問題 No.285 消費税2
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-03-01 10:28:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-06-23 11:57:51
合計ジャッジ時間 6,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,276 KB
testcase_01 AC 118 ms
40,376 KB
testcase_02 AC 125 ms
41,424 KB
testcase_03 AC 115 ms
41,192 KB
testcase_04 AC 127 ms
41,548 KB
testcase_05 AC 127 ms
41,372 KB
testcase_06 AC 126 ms
41,532 KB
testcase_07 AC 127 ms
41,276 KB
testcase_08 AC 132 ms
41,024 KB
testcase_09 AC 129 ms
41,544 KB
testcase_10 AC 128 ms
41,484 KB
testcase_11 AC 122 ms
41,140 KB
testcase_12 AC 126 ms
41,304 KB
testcase_13 AC 121 ms
40,364 KB
testcase_14 AC 125 ms
41,384 KB
testcase_15 AC 124 ms
41,160 KB
testcase_16 AC 123 ms
41,012 KB
testcase_17 AC 112 ms
40,320 KB
testcase_18 AC 117 ms
40,284 KB
testcase_19 AC 120 ms
41,472 KB
testcase_20 AC 123 ms
41,012 KB
testcase_21 AC 118 ms
40,808 KB
testcase_22 AC 133 ms
41,368 KB
testcase_23 AC 125 ms
41,032 KB
testcase_24 AC 125 ms
41,404 KB
testcase_25 AC 125 ms
41,472 KB
testcase_26 AC 122 ms
41,324 KB
testcase_27 AC 111 ms
40,136 KB
testcase_28 AC 114 ms
40,404 KB
testcase_29 AC 130 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        long d = stdin.nextLong();
        
        long x = d * 108;
        long y = x / 100;
        long z = x % 100;
        System.out.printf("%d.%02d", y, z);
    }
}
0