結果

問題 No.1852 Divide or Reduce
ユーザー tamatotamato
提出日時 2022-02-25 21:28:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 137,900 KB
最終ジャッジ日時 2024-07-03 16:09:40
合計ジャッジ時間 6,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,260 KB
testcase_01 AC 151 ms
76,816 KB
testcase_02 AC 159 ms
76,956 KB
testcase_03 AC 159 ms
77,136 KB
testcase_04 AC 160 ms
76,588 KB
testcase_05 AC 167 ms
76,732 KB
testcase_06 AC 204 ms
120,180 KB
testcase_07 AC 212 ms
126,584 KB
testcase_08 AC 218 ms
130,976 KB
testcase_09 AC 212 ms
123,032 KB
testcase_10 AC 211 ms
108,896 KB
testcase_11 AC 223 ms
135,364 KB
testcase_12 AC 220 ms
136,384 KB
testcase_13 AC 228 ms
135,872 KB
testcase_14 AC 229 ms
137,900 KB
testcase_15 AC 225 ms
137,788 KB
testcase_16 AC 280 ms
101,820 KB
testcase_17 AC 277 ms
101,184 KB
testcase_18 AC 266 ms
101,556 KB
testcase_19 AC 202 ms
103,468 KB
testcase_20 AC 231 ms
100,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N = int(input())
        A = list(map(int, input().split()))

        A.sort()
        S = sum(A) - N
        if S & 1:
            print("First")
        else:
            if N & 1:
                print("Second")
            else:
                if A[0] & 1:
                    print("Second")
                else:
                    print("First")


if __name__ == '__main__':
    main()
0