結果

問題 No.285 消費税2
ユーザー 5h0t4r05h0t4r0
提出日時 2015-11-02 17:42:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 946 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 7,770 ms
コンパイル使用メモリ 251,132 KB
実行使用メモリ 63,996 KB
最終ジャッジ日時 2023-09-11 14:44:19
合計ジャッジ時間 36,776 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 910 ms
62,852 KB
testcase_01 AC 913 ms
63,432 KB
testcase_02 AC 916 ms
63,064 KB
testcase_03 AC 906 ms
63,112 KB
testcase_04 AC 905 ms
62,908 KB
testcase_05 AC 906 ms
63,104 KB
testcase_06 AC 887 ms
63,996 KB
testcase_07 AC 911 ms
63,292 KB
testcase_08 AC 907 ms
62,908 KB
testcase_09 AC 906 ms
62,916 KB
testcase_10 AC 930 ms
63,060 KB
testcase_11 AC 929 ms
62,888 KB
testcase_12 AC 933 ms
62,816 KB
testcase_13 AC 924 ms
63,008 KB
testcase_14 AC 945 ms
62,936 KB
testcase_15 AC 918 ms
62,888 KB
testcase_16 AC 910 ms
63,136 KB
testcase_17 AC 926 ms
63,036 KB
testcase_18 AC 946 ms
63,052 KB
testcase_19 AC 929 ms
62,832 KB
testcase_20 AC 922 ms
63,076 KB
testcase_21 AC 917 ms
62,956 KB
testcase_22 AC 911 ms
63,280 KB
testcase_23 AC 903 ms
62,952 KB
testcase_24 AC 913 ms
63,028 KB
testcase_25 AC 921 ms
63,228 KB
testcase_26 AC 923 ms
63,120 KB
testcase_27 AC 913 ms
63,140 KB
testcase_28 AC 913 ms
62,956 KB
testcase_29 AC 924 ms
63,172 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