結果

問題 No.1033 乱数サイ
ユーザー 👑 yumechiyumechi
提出日時 2021-02-18 02:32:28
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,006 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 12,708 ms
コンパイル使用メモリ 254,340 KB
実行使用メモリ 63,456 KB
最終ジャッジ日時 2023-10-12 12:13:17
合計ジャッジ時間 31,792 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 985 ms
63,200 KB
testcase_01 AC 984 ms
63,320 KB
testcase_02 AC 978 ms
63,292 KB
testcase_03 AC 978 ms
63,308 KB
testcase_04 AC 968 ms
63,244 KB
testcase_05 AC 977 ms
63,376 KB
testcase_06 AC 983 ms
63,340 KB
testcase_07 AC 991 ms
63,336 KB
testcase_08 AC 987 ms
63,304 KB
testcase_09 AC 981 ms
63,312 KB
testcase_10 AC 987 ms
63,456 KB
testcase_11 AC 981 ms
63,340 KB
testcase_12 AC 993 ms
63,324 KB
testcase_13 AC 989 ms
63,216 KB
testcase_14 AC 991 ms
63,296 KB
testcase_15 AC 1,006 ms
63,292 KB
testcase_16 AC 986 ms
63,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val a = Array.fill(2)(sc.nextDouble)
  println(a(0) / 2)
}
0