結果

問題 No.285 消費税2
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-09-17 12:50:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 6,456 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 40,096 KB
最終ジャッジ日時 2024-11-08 01:51:58
合計ジャッジ時間 9,740 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
39,700 KB
testcase_01 AC 84 ms
38,136 KB
testcase_02 AC 89 ms
39,896 KB
testcase_03 AC 83 ms
38,168 KB
testcase_04 AC 81 ms
38,436 KB
testcase_05 AC 85 ms
39,616 KB
testcase_06 AC 91 ms
38,128 KB
testcase_07 AC 88 ms
40,048 KB
testcase_08 AC 84 ms
38,340 KB
testcase_09 AC 87 ms
38,392 KB
testcase_10 AC 83 ms
38,224 KB
testcase_11 AC 88 ms
40,096 KB
testcase_12 AC 88 ms
38,396 KB
testcase_13 AC 85 ms
38,596 KB
testcase_14 AC 86 ms
39,700 KB
testcase_15 AC 87 ms
38,628 KB
testcase_16 AC 86 ms
40,084 KB
testcase_17 AC 86 ms
38,468 KB
testcase_18 AC 83 ms
38,384 KB
testcase_19 AC 83 ms
38,036 KB
testcase_20 AC 101 ms
39,720 KB
testcase_21 AC 83 ms
38,612 KB
testcase_22 AC 83 ms
38,036 KB
testcase_23 AC 88 ms
39,896 KB
testcase_24 AC 86 ms
37,976 KB
testcase_25 AC 85 ms
38,268 KB
testcase_26 AC 96 ms
39,880 KB
testcase_27 AC 84 ms
38,360 KB
testcase_28 AC 95 ms
39,972 KB
testcase_29 AC 82 ms
38,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;

import static java.lang.System.in;

public class No285 {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));

        BigInteger d= new BigInteger(reader.readLine());

        String result = d.multiply(BigInteger.valueOf(108)).toString();

        System.out.println(result.substring(0,result.length()-2) + "." + result.substring(result.length()-2,result.length()));
    }
}
0