結果

問題 No.1816 MUL-DIV Game
ユーザー yudedakoyudedako
提出日時 2022-01-25 18:49:07
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,021 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 11,024 ms
コンパイル使用メモリ 269,968 KB
実行使用メモリ 69,636 KB
最終ジャッジ日時 2024-05-09 19:43:14
合計ジャッジ時間 38,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 758 ms
64,684 KB
testcase_01 AC 742 ms
64,656 KB
testcase_02 AC 749 ms
64,584 KB
testcase_03 AC 762 ms
64,856 KB
testcase_04 AC 803 ms
64,628 KB
testcase_05 AC 749 ms
64,552 KB
testcase_06 AC 750 ms
64,560 KB
testcase_07 AC 747 ms
64,760 KB
testcase_08 AC 766 ms
64,628 KB
testcase_09 AC 816 ms
64,636 KB
testcase_10 AC 824 ms
66,768 KB
testcase_11 AC 822 ms
66,872 KB
testcase_12 AC 840 ms
64,988 KB
testcase_13 AC 971 ms
69,196 KB
testcase_14 AC 911 ms
67,152 KB
testcase_15 AC 907 ms
66,924 KB
testcase_16 AC 841 ms
65,128 KB
testcase_17 AC 929 ms
69,332 KB
testcase_18 AC 896 ms
69,040 KB
testcase_19 AC 946 ms
67,164 KB
testcase_20 AC 1,021 ms
69,404 KB
testcase_21 AC 916 ms
65,068 KB
testcase_22 AC 868 ms
65,016 KB
testcase_23 AC 739 ms
64,780 KB
testcase_24 AC 739 ms
64,796 KB
testcase_25 AC 932 ms
69,472 KB
testcase_26 AC 852 ms
69,320 KB
testcase_27 AC 929 ms
69,600 KB
testcase_28 AC 848 ms
69,096 KB
testcase_29 AC 972 ms
69,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn.*
import scala.math.{min, max}
@main def main =
  val n = readLine().toInt
  val a = readLine().split(' ').map(_.toInt)
  if n == 1 then
    println(a.head)
  else if n % 2 == 1 then
    println(1)
  else if n == 2 then
    println(a.foldLeft(1L)(_ * _))
  else
    val sorted = a.sorted
    val minA = sorted(0).toLong * sorted(1)
    val minB = sorted(2)
    println(min(minA, minB))

0