結果

問題 No.285 消費税2
ユーザー tsunabittsunabit
提出日時 2019-05-26 18:12:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 75,388 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-09-17 15:19:29
合計ジャッジ時間 6,934 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,148 KB
testcase_01 AC 110 ms
41,216 KB
testcase_02 AC 112 ms
41,048 KB
testcase_03 AC 114 ms
40,276 KB
testcase_04 AC 106 ms
40,016 KB
testcase_05 AC 107 ms
41,468 KB
testcase_06 AC 108 ms
41,328 KB
testcase_07 AC 107 ms
40,944 KB
testcase_08 AC 104 ms
41,212 KB
testcase_09 AC 106 ms
41,072 KB
testcase_10 AC 106 ms
41,304 KB
testcase_11 AC 108 ms
41,344 KB
testcase_12 AC 116 ms
41,568 KB
testcase_13 AC 114 ms
41,044 KB
testcase_14 AC 103 ms
40,844 KB
testcase_15 AC 108 ms
41,104 KB
testcase_16 AC 99 ms
41,284 KB
testcase_17 AC 102 ms
41,060 KB
testcase_18 AC 101 ms
41,712 KB
testcase_19 AC 118 ms
40,968 KB
testcase_20 AC 118 ms
41,368 KB
testcase_21 AC 117 ms
40,964 KB
testcase_22 AC 116 ms
41,092 KB
testcase_23 AC 116 ms
41,428 KB
testcase_24 AC 118 ms
41,224 KB
testcase_25 AC 104 ms
40,052 KB
testcase_26 AC 112 ms
41,064 KB
testcase_27 AC 113 ms
41,196 KB
testcase_28 AC 112 ms
40,988 KB
testcase_29 AC 115 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;
import java.util.Arrays;

public class No285 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        long d = s.nextLong();
        long x = d * 108;
        long y = x / 100;
        long z = x % 100;
        System.out.printf("%d.%02d", y, z);
    }
}
0