結果

問題 No.285 消費税2
ユーザー samplelpmassamplelpmas
提出日時 2017-05-13 19:21:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 42,416 KB
最終ジャッジ日時 2024-09-15 12:18:13
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,968 KB
testcase_01 AC 156 ms
41,960 KB
testcase_02 AC 153 ms
42,100 KB
testcase_03 AC 157 ms
42,416 KB
testcase_04 AC 156 ms
41,996 KB
testcase_05 AC 156 ms
42,156 KB
testcase_06 AC 155 ms
42,180 KB
testcase_07 AC 160 ms
42,200 KB
testcase_08 AC 159 ms
42,044 KB
testcase_09 AC 156 ms
42,300 KB
testcase_10 AC 154 ms
42,008 KB
testcase_11 AC 154 ms
42,100 KB
testcase_12 AC 154 ms
42,116 KB
testcase_13 AC 154 ms
42,324 KB
testcase_14 AC 142 ms
41,880 KB
testcase_15 AC 153 ms
42,148 KB
testcase_16 AC 155 ms
42,028 KB
testcase_17 AC 141 ms
42,124 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 154 ms
41,880 KB
testcase_21 AC 152 ms
42,100 KB
testcase_22 AC 153 ms
42,000 KB
testcase_23 AC 153 ms
41,992 KB
testcase_24 WA -
testcase_25 AC 140 ms
41,688 KB
testcase_26 AC 153 ms
42,352 KB
testcase_27 AC 156 ms
42,008 KB
testcase_28 WA -
testcase_29 AC 154 ms
42,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        long d = sc.nextLong();

        d *= 108;

        long integerPart = d / 100;
        long fractionalPart = d % 100;

        System.out.println(integerPart + "." + fractionalPart);

    }

}
0