結果

問題 No.445 得点
ユーザー HujiLeeHujiLee
提出日時 2016-11-25 23:23:35
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 11,798 ms
コンパイル使用メモリ 262,156 KB
実行使用メモリ 62,472 KB
最終ジャッジ日時 2023-09-12 07:35:33
合計ジャッジ時間 30,468 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 953 ms
62,308 KB
testcase_01 AC 957 ms
62,228 KB
testcase_02 AC 952 ms
62,184 KB
testcase_03 AC 941 ms
62,248 KB
testcase_04 AC 919 ms
62,176 KB
testcase_05 AC 949 ms
62,204 KB
testcase_06 AC 958 ms
62,204 KB
testcase_07 AC 948 ms
62,240 KB
testcase_08 AC 944 ms
62,424 KB
testcase_09 AC 944 ms
62,164 KB
testcase_10 AC 948 ms
62,356 KB
testcase_11 AC 946 ms
62,472 KB
testcase_12 AC 944 ms
62,260 KB
testcase_13 AC 940 ms
62,208 KB
testcase_14 AC 934 ms
62,432 KB
testcase_15 AC 937 ms
62,344 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 962 ms
62,264 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