結果

問題 No.1852 Divide or Reduce
ユーザー ああいいああいい
提出日時 2022-02-25 22:00:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 137,484 KB
最終ジャッジ日時 2024-07-03 16:50:18
合計ジャッジ時間 8,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,336 KB
testcase_01 AC 231 ms
77,096 KB
testcase_02 AC 228 ms
77,164 KB
testcase_03 AC 222 ms
77,596 KB
testcase_04 AC 225 ms
77,124 KB
testcase_05 AC 224 ms
77,292 KB
testcase_06 AC 137 ms
123,724 KB
testcase_07 AC 139 ms
127,740 KB
testcase_08 AC 144 ms
132,288 KB
testcase_09 AC 135 ms
123,348 KB
testcase_10 AC 135 ms
111,024 KB
testcase_11 AC 148 ms
135,568 KB
testcase_12 AC 147 ms
136,448 KB
testcase_13 AC 146 ms
135,452 KB
testcase_14 AC 147 ms
137,480 KB
testcase_15 AC 150 ms
137,484 KB
testcase_16 AC 764 ms
102,276 KB
testcase_17 AC 743 ms
101,868 KB
testcase_18 AC 744 ms
101,928 KB
testcase_19 AC 642 ms
103,564 KB
testcase_20 AC 717 ms
102,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
S = "Second"
F = "First"
for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))
    flag = False
    _sum = 0
    _min = min(A)
    for a in A:
        if a == 1:
            flag = True
        _sum += a - 1
    if _sum == 0:
        print(S)
        continue
    if flag:
        if _sum % 2 == 0:
            print(S)
        else:
            print(F)
    else:
        if _sum % 2 == 1:
            print(F)
        else:
            if N % 2 == 1:
                print(S)
            else:
                if (_min-1) % 2 == 1:
                    print(F)
                else:
                    print(S)
0