結果

問題 No.445 得点
ユーザー HujiLeeHujiLee
提出日時 2016-11-25 23:26:14
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 904 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 8,494 ms
コンパイル使用メモリ 262,800 KB
実行使用メモリ 64,796 KB
最終ジャッジ日時 2024-06-29 20:29:58
合計ジャッジ時間 25,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 788 ms
64,632 KB
testcase_01 AC 778 ms
64,664 KB
testcase_02 AC 779 ms
64,540 KB
testcase_03 AC 778 ms
64,796 KB
testcase_04 AC 765 ms
64,796 KB
testcase_05 AC 862 ms
64,516 KB
testcase_06 AC 792 ms
64,744 KB
testcase_07 AC 776 ms
64,640 KB
testcase_08 AC 788 ms
64,600 KB
testcase_09 AC 895 ms
64,604 KB
testcase_10 AC 904 ms
64,768 KB
testcase_11 AC 776 ms
64,672 KB
testcase_12 AC 774 ms
64,696 KB
testcase_13 AC 782 ms
64,512 KB
testcase_14 AC 789 ms
64,668 KB
testcase_15 AC 785 ms
64,508 KB
testcase_16 AC 793 ms
64,628 KB
testcase_17 AC 789 ms
64,488 KB
testcase_18 AC 770 ms
64,584 KB
testcase_19 AC 795 ms
64,716 KB
testcase_20 AC 786 ms
64,604 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/((8+2*b)/10.0)).toInt
  )

}
0