結果

問題 No.1852 Divide or Reduce
ユーザー MitarushiMitarushi
提出日時 2022-01-04 22:09:29
言語 Nim
(2.0.2)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 130 ms
5,376 KB
testcase_02 AC 129 ms
5,376 KB
testcase_03 AC 130 ms
5,376 KB
testcase_04 AC 130 ms
5,376 KB
testcase_05 AC 129 ms
5,376 KB
testcase_06 AC 88 ms
15,872 KB
testcase_07 AC 91 ms
19,968 KB
testcase_08 AC 89 ms
19,584 KB
testcase_09 AC 87 ms
15,616 KB
testcase_10 AC 90 ms
19,584 KB
testcase_11 AC 94 ms
23,296 KB
testcase_12 AC 93 ms
23,296 KB
testcase_13 AC 93 ms
23,424 KB
testcase_14 AC 93 ms
23,552 KB
testcase_15 AC 95 ms
23,424 KB
testcase_16 AC 499 ms
17,024 KB
testcase_17 AC 493 ms
17,024 KB
testcase_18 AC 489 ms
17,024 KB
testcase_19 AC 463 ms
15,232 KB
testcase_20 AC 493 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

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