結果

問題 No.1852 Divide or Reduce
ユーザー MitarushiMitarushi
提出日時 2022-01-04 22:09:29
言語 Nim
(2.2.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 4,598 ms
コンパイル使用メモリ 65,408 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-29 06:10:48
合計ジャッジ時間 10,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

proc solve() =
    let n = stdin.readLine.parseInt
    let a = stdin.readLine.split.map parseInt
    let a_sum = a.foldl(a + b)

    if a.contains(1):
        if (a_sum - n) mod 2 == 0:
            echo "Second"
        else:
            echo "First"
    else:
        if (a_sum - (n + 1)) mod 2 == 0:
            echo "First"
        else:
            if n mod 2 == 1:
                echo "Second"
            else:
                let a_min = a.min
                if a_min mod 2 == 0:
                    echo "First"
                else:
                    echo "Second"


let t = stdin.readLine.parseInt
for _ in 0..<t:
    solve()

0