結果

問題 No.1852 Divide or Reduce
ユーザー yudedakoyudedako
提出日時 2022-03-01 13:08:47
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 567 bytes
コンパイル時間 12,631 ms
コンパイル使用メモリ 261,912 KB
実行使用メモリ 101,500 KB
最終ジャッジ日時 2024-07-07 18:56:51
合計ジャッジ時間 45,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 754 ms
63,020 KB
testcase_01 AC 1,301 ms
70,120 KB
testcase_02 AC 1,276 ms
70,312 KB
testcase_03 AC 1,279 ms
70,148 KB
testcase_04 AC 1,271 ms
69,920 KB
testcase_05 AC 1,405 ms
69,832 KB
testcase_06 AC 1,375 ms
89,412 KB
testcase_07 AC 1,326 ms
96,508 KB
testcase_08 AC 1,332 ms
97,756 KB
testcase_09 AC 1,209 ms
85,412 KB
testcase_10 AC 1,235 ms
100,252 KB
testcase_11 AC 1,238 ms
98,448 KB
testcase_12 AC 1,256 ms
101,220 KB
testcase_13 AC 1,284 ms
101,500 KB
testcase_14 AC 1,277 ms
101,148 KB
testcase_15 AC 1,250 ms
101,288 KB
testcase_16 AC 1,902 ms
95,032 KB
testcase_17 AC 1,918 ms
94,788 KB
testcase_18 AC 1,898 ms
94,816 KB
testcase_19 TLE -
testcase_20 AC 1,887 ms
96,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable.*
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.reflect.ClassTag
import scala.util.*
import scala.annotation.tailrec
import scala.collection.mutable


@main def main =
  val testCase = readLine.toInt
  for _ <- 0 until testCase do
    val n = readLine.toInt
    val pile = readLine.split(' ').map(_.toLong)
    val min = pile.min
    val sum = pile.sum
    val firstWin = (sum - n) % 2 == 1 || (n % 2 == 0 && min % 2 == 0)
    println{
      if firstWin then "First"
      else "Second"
    }

0