結果

問題 No.1852 Divide or Reduce
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-07 13:17:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,636 KB
最終ジャッジ日時 2024-09-27 19:22:07
合計ジャッジ時間 7,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,404 KB
testcase_01 AC 210 ms
77,688 KB
testcase_02 AC 211 ms
77,440 KB
testcase_03 AC 207 ms
77,552 KB
testcase_04 AC 211 ms
77,696 KB
testcase_05 AC 209 ms
77,456 KB
testcase_06 AC 220 ms
123,964 KB
testcase_07 AC 226 ms
116,312 KB
testcase_08 AC 235 ms
129,180 KB
testcase_09 AC 224 ms
114,668 KB
testcase_10 AC 228 ms
107,612 KB
testcase_11 AC 238 ms
134,388 KB
testcase_12 AC 242 ms
133,352 KB
testcase_13 AC 242 ms
134,428 KB
testcase_14 AC 244 ms
134,636 KB
testcase_15 AC 241 ms
134,600 KB
testcase_16 AC 407 ms
104,232 KB
testcase_17 AC 406 ms
103,412 KB
testcase_18 AC 410 ms
102,144 KB
testcase_19 AC 333 ms
103,808 KB
testcase_20 AC 363 ms
102,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1852

def solve(N, A):
    A.sort()
    if A[0] == 1:
        ans = 0
        for i in range(1, N):
            if A[i] % 2 == 0:
                ans ^= 1
    else:
        odds = 0
        evens = 0
        for i in range(N):
            if A[i] % 2 == 0:
                evens += 1
            else:
                odds += 1
        if evens % 2 == 1:
            ans = 1
        elif odds % 2 == 1:
            ans = 0
        else:
            ans = 0
            a = 0
            if A[0] % 2 == 1:
                a = 0 # 偶数回Yができる
            else:
                a = 1 # 奇数回Yができる
            for i in range(1, N):
                b = A[i] - (A[0] - 1)
                if b % 2 == 0:
                    ans ^= 1
            if a == 1:
                ans ^= 1

    if ans == 1:
        return "First"
    else:
        return "Second"
            

def main():
    T = int(input())
    answers = []
    for _ in range(T):
        N = int(input())
        A = list(map(int, input().split()))
        answers.append(solve(N, A))

    for answer in answers:
        print(answer)




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