結果

問題 No.285 消費税2
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 23:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 76,044 KB
実行使用メモリ 55,060 KB
最終ジャッジ日時 2024-11-26 02:39:25
合計ジャッジ時間 7,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,508 KB
testcase_01 AC 137 ms
54,536 KB
testcase_02 AC 139 ms
55,008 KB
testcase_03 AC 142 ms
54,584 KB
testcase_04 AC 139 ms
54,756 KB
testcase_05 AC 139 ms
54,536 KB
testcase_06 AC 139 ms
54,844 KB
testcase_07 AC 137 ms
55,008 KB
testcase_08 AC 138 ms
54,808 KB
testcase_09 AC 131 ms
54,184 KB
testcase_10 AC 144 ms
54,708 KB
testcase_11 AC 124 ms
54,524 KB
testcase_12 AC 132 ms
54,408 KB
testcase_13 AC 148 ms
54,668 KB
testcase_14 AC 127 ms
54,464 KB
testcase_15 AC 140 ms
54,604 KB
testcase_16 AC 143 ms
54,648 KB
testcase_17 AC 155 ms
54,812 KB
testcase_18 AC 156 ms
54,832 KB
testcase_19 AC 137 ms
54,820 KB
testcase_20 AC 142 ms
54,704 KB
testcase_21 AC 141 ms
54,956 KB
testcase_22 AC 146 ms
55,048 KB
testcase_23 AC 143 ms
54,688 KB
testcase_24 AC 147 ms
55,060 KB
testcase_25 AC 138 ms
54,692 KB
testcase_26 AC 140 ms
54,592 KB
testcase_27 AC 127 ms
54,220 KB
testcase_28 AC 140 ms
54,836 KB
testcase_29 AC 145 ms
54,684 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