結果

問題 No.1852 Divide or Reduce
ユーザー customaddonecustomaddone
提出日時 2022-02-26 16:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,689 bytes
コンパイル時間 1,099 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 139,616 KB
最終ジャッジ日時 2024-07-04 13:17:40
合計ジャッジ時間 7,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,056 KB
testcase_01 AC 175 ms
77,568 KB
testcase_02 AC 156 ms
77,952 KB
testcase_03 AC 154 ms
77,952 KB
testcase_04 AC 153 ms
77,696 KB
testcase_05 AC 156 ms
77,824 KB
testcase_06 AC 157 ms
125,184 KB
testcase_07 AC 148 ms
118,784 KB
testcase_08 AC 164 ms
135,676 KB
testcase_09 AC 146 ms
114,688 KB
testcase_10 AC 156 ms
129,080 KB
testcase_11 AC 165 ms
139,220 KB
testcase_12 AC 164 ms
139,616 KB
testcase_13 AC 164 ms
139,600 KB
testcase_14 AC 164 ms
139,360 KB
testcase_15 AC 171 ms
139,604 KB
testcase_16 AC 263 ms
108,384 KB
testcase_17 AC 260 ms
108,376 KB
testcase_18 AC 255 ms
108,372 KB
testcase_19 AC 217 ms
104,192 KB
testcase_20 AC 232 ms
108,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10000000)
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

"""
先手はX, Y両方試せる
どこかの山を1とA[i] - 1に分割したらその後はXしか行えない
A[i] - 1の総和が奇数なら後手に偶数個で渡せてXを交互に行うことで先手が勝てる
偶数の場合は操作Yを行い偶数個取り除ければ安全に渡せる
後手も同じ操作を行い先手に渡す
Yを行える回数が奇数なら先手の勝ち
"""

T = getN()
for _ in range(T):
    N = getN()
    A = getList()

    X = 0
    Y = inf
    for a in A:
        X += a - 1
        Y = min(Y, a)
    Y -= 1

    # Xの操作回数が奇数なら
    if X % 2 != 0:
        print('First')
    else:
        # 偶数個引け、かつ奇数回施行できる
        if N % 2 == 0 and Y % 2 != 0:
            print('First')
        else:
            print('Second')
0