結果

問題 No.285 消費税2
ユーザー samplelpmassamplelpmas
提出日時 2017-05-13 19:28:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 75,960 KB
実行使用メモリ 42,840 KB
最終ジャッジ日時 2024-09-15 12:18:26
合計ジャッジ時間 8,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,504 KB
testcase_01 AC 165 ms
42,452 KB
testcase_02 AC 161 ms
42,584 KB
testcase_03 AC 168 ms
42,544 KB
testcase_04 AC 166 ms
42,792 KB
testcase_05 AC 170 ms
42,408 KB
testcase_06 AC 168 ms
42,436 KB
testcase_07 AC 165 ms
42,768 KB
testcase_08 AC 164 ms
42,456 KB
testcase_09 AC 164 ms
42,632 KB
testcase_10 AC 164 ms
42,420 KB
testcase_11 AC 162 ms
42,840 KB
testcase_12 AC 164 ms
42,416 KB
testcase_13 AC 164 ms
42,396 KB
testcase_14 AC 164 ms
42,476 KB
testcase_15 AC 166 ms
42,720 KB
testcase_16 AC 170 ms
42,448 KB
testcase_17 AC 155 ms
42,408 KB
testcase_18 AC 168 ms
42,548 KB
testcase_19 AC 171 ms
42,548 KB
testcase_20 AC 169 ms
42,548 KB
testcase_21 AC 163 ms
42,320 KB
testcase_22 AC 169 ms
42,516 KB
testcase_23 AC 166 ms
42,504 KB
testcase_24 AC 165 ms
42,532 KB
testcase_25 AC 164 ms
42,260 KB
testcase_26 AC 150 ms
42,380 KB
testcase_27 AC 163 ms
42,564 KB
testcase_28 AC 158 ms
42,760 KB
testcase_29 AC 163 ms
42,420 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 / 10 + fractionalPart % 10);

    }

}
0