結果

問題 No.285 消費税2
ユーザー 5h0t4r05h0t4r0
提出日時 2015-11-02 17:42:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 6,848 ms
コンパイル使用メモリ 251,016 KB
実行使用メモリ 65,260 KB
最終ジャッジ日時 2024-06-29 04:56:01
合計ジャッジ時間 34,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 823 ms
65,156 KB
testcase_01 AC 847 ms
65,116 KB
testcase_02 AC 842 ms
65,080 KB
testcase_03 AC 833 ms
64,916 KB
testcase_04 AC 873 ms
65,260 KB
testcase_05 AC 821 ms
65,192 KB
testcase_06 AC 838 ms
64,960 KB
testcase_07 AC 858 ms
64,980 KB
testcase_08 AC 886 ms
64,940 KB
testcase_09 AC 852 ms
65,116 KB
testcase_10 AC 862 ms
64,692 KB
testcase_11 AC 846 ms
65,100 KB
testcase_12 AC 824 ms
65,036 KB
testcase_13 AC 862 ms
65,196 KB
testcase_14 AC 844 ms
64,948 KB
testcase_15 AC 845 ms
64,844 KB
testcase_16 AC 835 ms
64,680 KB
testcase_17 AC 870 ms
65,260 KB
testcase_18 AC 827 ms
64,868 KB
testcase_19 AC 848 ms
64,656 KB
testcase_20 AC 859 ms
64,828 KB
testcase_21 AC 829 ms
64,740 KB
testcase_22 AC 844 ms
64,872 KB
testcase_23 AC 875 ms
64,744 KB
testcase_24 AC 836 ms
65,232 KB
testcase_25 AC 853 ms
64,964 KB
testcase_26 AC 864 ms
65,024 KB
testcase_27 AC 853 ms
64,660 KB
testcase_28 AC 847 ms
64,860 KB
testcase_29 AC 845 ms
64,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Yuki285 extends App{
  val input = new java.util.Scanner(System.in)
  val s = input.next
  val result = BigDecimal(s) * 1.08
  println(result)
}
0