結果

問題 No.306 さいたま2008
ユーザー koba-e964koba-e964
提出日時 2015-12-01 12:37:04
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 978 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 10,065 ms
コンパイル使用メモリ 258,536 KB
実行使用メモリ 63,680 KB
最終ジャッジ日時 2024-06-29 11:35:47
合計ジャッジ時間 31,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 957 ms
63,412 KB
testcase_01 AC 956 ms
63,332 KB
testcase_02 AC 953 ms
63,444 KB
testcase_03 AC 952 ms
63,460 KB
testcase_04 AC 951 ms
63,680 KB
testcase_05 AC 952 ms
63,424 KB
testcase_06 AC 966 ms
63,480 KB
testcase_07 AC 974 ms
63,536 KB
testcase_08 AC 954 ms
63,376 KB
testcase_09 AC 962 ms
63,652 KB
testcase_10 AC 966 ms
63,348 KB
testcase_11 AC 945 ms
63,536 KB
testcase_12 AC 959 ms
63,380 KB
testcase_13 AC 949 ms
63,324 KB
testcase_14 AC 934 ms
63,512 KB
testcase_15 AC 963 ms
63,556 KB
testcase_16 AC 958 ms
63,548 KB
testcase_17 AC 968 ms
63,552 KB
testcase_18 AC 961 ms
63,460 KB
testcase_19 AC 958 ms
63,448 KB
testcase_20 AC 966 ms
63,324 KB
testcase_21 AC 978 ms
63,288 KB
testcase_22 AC 965 ms
63,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  import java.{util => ju}
  import scala.annotation._
  import scala.collection._
  import scala.collection.{mutable => mu}
  import scala.collection.JavaConverters._
  import scala.math._

  val sc = new ju.Scanner(System.in)
  val a,b,c,d = sc.nextDouble
  val ans = (a * d + b * c) / (a + c)
  println(ans)
}
0