結果

問題 No.285 消費税2
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 14:18:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 55,088 KB
最終ジャッジ日時 2024-10-04 08:36:21
合計ジャッジ時間 6,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,708 KB
testcase_01 AC 134 ms
54,884 KB
testcase_02 AC 123 ms
54,620 KB
testcase_03 AC 141 ms
54,572 KB
testcase_04 AC 131 ms
54,528 KB
testcase_05 AC 131 ms
54,608 KB
testcase_06 AC 118 ms
54,328 KB
testcase_07 AC 132 ms
54,748 KB
testcase_08 AC 122 ms
54,512 KB
testcase_09 AC 133 ms
54,632 KB
testcase_10 AC 152 ms
54,544 KB
testcase_11 AC 138 ms
54,760 KB
testcase_12 AC 151 ms
54,952 KB
testcase_13 AC 124 ms
54,504 KB
testcase_14 AC 138 ms
55,076 KB
testcase_15 AC 141 ms
54,984 KB
testcase_16 AC 134 ms
54,872 KB
testcase_17 AC 121 ms
54,392 KB
testcase_18 AC 121 ms
54,612 KB
testcase_19 AC 124 ms
54,388 KB
testcase_20 AC 131 ms
55,088 KB
testcase_21 AC 139 ms
54,796 KB
testcase_22 AC 141 ms
55,088 KB
testcase_23 AC 143 ms
54,992 KB
testcase_24 AC 142 ms
54,556 KB
testcase_25 AC 142 ms
55,044 KB
testcase_26 AC 140 ms
54,948 KB
testcase_27 AC 121 ms
54,584 KB
testcase_28 AC 140 ms
54,716 KB
testcase_29 AC 132 ms
54,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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