結果

問題 No.445 得点
ユーザー HujiLeeHujiLee
提出日時 2016-11-25 23:23:35
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 9,319 ms
コンパイル使用メモリ 262,156 KB
実行使用メモリ 63,216 KB
最終ジャッジ日時 2024-06-29 20:31:07
合計ジャッジ時間 28,999 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 901 ms
63,044 KB
testcase_01 AC 901 ms
63,096 KB
testcase_02 AC 905 ms
62,868 KB
testcase_03 AC 884 ms
63,044 KB
testcase_04 AC 907 ms
63,216 KB
testcase_05 AC 893 ms
63,144 KB
testcase_06 AC 909 ms
62,792 KB
testcase_07 AC 881 ms
62,928 KB
testcase_08 AC 884 ms
63,120 KB
testcase_09 AC 889 ms
63,112 KB
testcase_10 AC 872 ms
62,996 KB
testcase_11 AC 887 ms
62,884 KB
testcase_12 AC 897 ms
63,092 KB
testcase_13 AC 905 ms
63,088 KB
testcase_14 AC 904 ms
62,960 KB
testcase_15 AC 896 ms
62,892 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 891 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn._
/**
  * Created by Administrator on 2016/11/25 0025.
  */
object Main extends App{
  val Array(a,b) = readLine().split(" ").map(x=>x.toInt)

  println(
    50*a+math.floor(50*a/(0.8+0.2*b)).toInt
  )

}
0