結果

問題 No.1033 乱数サイ
ユーザー 👑 yumechiyumechi
提出日時 2021-02-18 02:36:35
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,021 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 13,141 ms
コンパイル使用メモリ 253,420 KB
実行使用メモリ 63,712 KB
最終ジャッジ日時 2023-10-12 12:17:30
合計ジャッジ時間 32,080 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,016 ms
63,712 KB
testcase_01 AC 1,005 ms
63,624 KB
testcase_02 AC 1,020 ms
63,640 KB
testcase_03 AC 1,012 ms
63,540 KB
testcase_04 AC 1,013 ms
63,548 KB
testcase_05 AC 1,010 ms
63,588 KB
testcase_06 AC 1,009 ms
63,612 KB
testcase_07 AC 1,012 ms
63,536 KB
testcase_08 AC 1,014 ms
63,476 KB
testcase_09 AC 1,016 ms
63,540 KB
testcase_10 AC 1,009 ms
63,588 KB
testcase_11 AC 1,021 ms
63,576 KB
testcase_12 AC 1,012 ms
63,424 KB
testcase_13 AC 1,007 ms
63,696 KB
testcase_14 AC 1,015 ms
63,520 KB
testcase_15 AC 1,015 ms
63,568 KB
testcase_16 AC 1,006 ms
63,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

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