結果

問題 No.1852 Divide or Reduce
ユーザー ygd.ygd.
提出日時 2022-02-27 19:56:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 789 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 141,156 KB
最終ジャッジ日時 2024-07-05 19:16:54
合計ジャッジ時間 8,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]

def main():
    T = int(input())
    for _ in range(T):
        N = int(input())
        A = list(map(int,input().split()))
        B = [1 - a%2 for a in A]
        val = 0
        for b in B:
            val ^= b
        if val == 0:
            print("Second")
        else:
            print("First")

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