結果

問題 No.445 得点
ユーザー HujiLeeHujiLee
提出日時 2016-11-25 23:26:14
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 956 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 8,406 ms
コンパイル使用メモリ 260,660 KB
実行使用メモリ 62,588 KB
最終ジャッジ日時 2023-09-12 07:34:08
合計ジャッジ時間 30,007 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
62,320 KB
testcase_01 AC 949 ms
62,560 KB
testcase_02 AC 951 ms
62,240 KB
testcase_03 AC 948 ms
62,204 KB
testcase_04 AC 956 ms
62,272 KB
testcase_05 AC 937 ms
62,588 KB
testcase_06 AC 932 ms
62,252 KB
testcase_07 AC 925 ms
62,136 KB
testcase_08 AC 939 ms
62,156 KB
testcase_09 AC 941 ms
62,140 KB
testcase_10 AC 924 ms
62,196 KB
testcase_11 AC 911 ms
62,100 KB
testcase_12 AC 921 ms
62,160 KB
testcase_13 AC 915 ms
62,272 KB
testcase_14 AC 932 ms
62,364 KB
testcase_15 AC 938 ms
62,188 KB
testcase_16 AC 935 ms
62,260 KB
testcase_17 AC 944 ms
62,136 KB
testcase_18 AC 940 ms
62,144 KB
testcase_19 AC 945 ms
62,364 KB
testcase_20 AC 941 ms
62,128 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