結果

問題 No.445 得点
ユーザー BurdenBurden
提出日時 2016-12-29 20:54:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 8,040 ms
コンパイル使用メモリ 256,276 KB
実行使用メモリ 64,752 KB
最終ジャッジ日時 2024-06-29 22:07:25
合計ジャッジ時間 27,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 873 ms
64,700 KB
testcase_01 AC 873 ms
64,664 KB
testcase_02 AC 870 ms
64,620 KB
testcase_03 AC 877 ms
64,632 KB
testcase_04 AC 872 ms
64,592 KB
testcase_05 AC 872 ms
64,556 KB
testcase_06 AC 867 ms
64,704 KB
testcase_07 AC 874 ms
64,592 KB
testcase_08 AC 870 ms
64,592 KB
testcase_09 AC 870 ms
64,680 KB
testcase_10 AC 870 ms
64,368 KB
testcase_11 AC 870 ms
64,616 KB
testcase_12 AC 862 ms
64,348 KB
testcase_13 AC 870 ms
64,576 KB
testcase_14 AC 869 ms
64,532 KB
testcase_15 AC 876 ms
64,660 KB
testcase_16 AC 870 ms
64,752 KB
testcase_17 AC 877 ms
64,712 KB
testcase_18 AC 874 ms
64,616 KB
testcase_19 AC 863 ms
64,556 KB
testcase_20 AC 871 ms
64,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Point445 {
  def main(args:Array[String]): Unit ={
    def pointCalc(n:Double,k:Double):Int =
      (n + n / k).toInt
    val a = readLine().split(" ").map(_.toDouble)
    println(pointCalc(a(0) * 50,0.8 + a(1) * 0.2))
  }
}
0