結果

問題 No.285 消費税2
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 23:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,648 ms
コンパイル使用メモリ 76,280 KB
実行使用メモリ 42,724 KB
最終ジャッジ日時 2024-05-04 14:35:09
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,924 KB
testcase_01 AC 135 ms
42,432 KB
testcase_02 AC 136 ms
42,164 KB
testcase_03 AC 143 ms
42,352 KB
testcase_04 AC 133 ms
42,660 KB
testcase_05 AC 137 ms
42,156 KB
testcase_06 AC 133 ms
42,288 KB
testcase_07 AC 131 ms
42,724 KB
testcase_08 AC 132 ms
42,392 KB
testcase_09 AC 135 ms
42,364 KB
testcase_10 AC 122 ms
41,824 KB
testcase_11 AC 133 ms
42,720 KB
testcase_12 AC 131 ms
42,524 KB
testcase_13 AC 132 ms
42,608 KB
testcase_14 AC 133 ms
42,312 KB
testcase_15 AC 132 ms
42,448 KB
testcase_16 AC 140 ms
42,716 KB
testcase_17 AC 141 ms
42,520 KB
testcase_18 AC 134 ms
42,592 KB
testcase_19 AC 138 ms
42,468 KB
testcase_20 AC 134 ms
41,844 KB
testcase_21 AC 137 ms
42,012 KB
testcase_22 AC 145 ms
42,436 KB
testcase_23 AC 133 ms
42,532 KB
testcase_24 AC 142 ms
42,468 KB
testcase_25 AC 133 ms
42,572 KB
testcase_26 AC 132 ms
42,724 KB
testcase_27 AC 136 ms
41,776 KB
testcase_28 AC 121 ms
42,300 KB
testcase_29 AC 133 ms
42,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long D = sc.nextLong();
        long d = D*108;
        String A = String.valueOf(d);
        String B = A.substring(0,A.length()-2)+"."+A.substring(A.length()-2);
        System.out.println(B);
    }
}
0