結果

問題 No.1852 Divide or Reduce
ユーザー rlangevinrlangevin
提出日時 2023-11-13 08:52:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,272 KB
最終ジャッジ日時 2024-09-26 03:14:57
合計ジャッジ時間 8,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 188 ms
77,184 KB
testcase_02 AC 190 ms
76,928 KB
testcase_03 AC 190 ms
76,928 KB
testcase_04 AC 192 ms
76,928 KB
testcase_05 AC 189 ms
77,184 KB
testcase_06 AC 150 ms
119,924 KB
testcase_07 AC 159 ms
125,468 KB
testcase_08 AC 163 ms
129,752 KB
testcase_09 AC 157 ms
122,276 KB
testcase_10 AC 154 ms
107,680 KB
testcase_11 AC 166 ms
135,272 KB
testcase_12 AC 163 ms
134,492 KB
testcase_13 AC 165 ms
133,084 KB
testcase_14 AC 169 ms
134,612 KB
testcase_15 AC 166 ms
135,128 KB
testcase_16 AC 286 ms
100,196 KB
testcase_17 AC 283 ms
99,840 KB
testcase_18 AC 283 ms
99,840 KB
testcase_19 AC 231 ms
102,912 KB
testcase_20 AC 256 ms
99,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve(A):
    if min(A) % 2 == 0 and len(A) % 2 == 0:
        return 1
    v = 0
    for a in A:
        v ^= a % 2 == 0
    return v

T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    print("First" if solve(A) else "Second")
0