結果

問題 No.1852 Divide or Reduce
ユーザー MitarushiMitarushi
提出日時 2022-02-24 23:16:11
言語 Nim
(2.0.2)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 4,240 ms
コンパイル使用メモリ 66,012 KB
実行使用メモリ 23,784 KB
最終ジャッジ日時 2024-07-02 14:14:19
合計ジャッジ時間 12,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 131 ms
5,376 KB
testcase_02 AC 134 ms
5,376 KB
testcase_03 AC 136 ms
5,376 KB
testcase_04 AC 132 ms
5,376 KB
testcase_05 AC 133 ms
5,376 KB
testcase_06 AC 87 ms
16,000 KB
testcase_07 AC 87 ms
19,916 KB
testcase_08 AC 86 ms
19,584 KB
testcase_09 AC 86 ms
15,616 KB
testcase_10 AC 88 ms
19,712 KB
testcase_11 AC 92 ms
23,632 KB
testcase_12 AC 92 ms
23,620 KB
testcase_13 AC 89 ms
23,632 KB
testcase_14 AC 90 ms
23,580 KB
testcase_15 AC 93 ms
23,784 KB
testcase_16 AC 488 ms
17,184 KB
testcase_17 AC 504 ms
17,084 KB
testcase_18 AC 504 ms
16,956 KB
testcase_19 AC 461 ms
15,196 KB
testcase_20 AC 498 ms
18,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

var n_sum = 0

proc solve() =
    let n = stdin.readLine.parseInt
    let a = stdin.readLine.split.map parseBiggestInt

    n_sum += n

    assert 1 <= n and n <= 200000
    assert a.mapIt(1 <= it and it <= 1000000000).foldl(a and b)

    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"

proc last_check() =
    try:
        let x = stdin.readLine
        assert x == ""
    except EOFError:
        return

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

assert 1 <= n_sum and n_sum <= 500000

last_check()
0