結果

問題 No.1852 Divide or Reduce
ユーザー shinichishinichi
提出日時 2022-03-25 23:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 137,404 KB
最終ジャッジ日時 2024-10-14 07:18:24
合計ジャッジ時間 6,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,424 KB
testcase_01 AC 172 ms
78,068 KB
testcase_02 AC 172 ms
78,292 KB
testcase_03 AC 172 ms
78,420 KB
testcase_04 AC 174 ms
78,564 KB
testcase_05 AC 174 ms
78,560 KB
testcase_06 AC 138 ms
122,516 KB
testcase_07 AC 142 ms
127,408 KB
testcase_08 AC 146 ms
131,636 KB
testcase_09 AC 137 ms
122,456 KB
testcase_10 AC 140 ms
112,112 KB
testcase_11 AC 151 ms
137,020 KB
testcase_12 AC 152 ms
136,476 KB
testcase_13 AC 149 ms
135,676 KB
testcase_14 AC 150 ms
137,404 KB
testcase_15 AC 151 ms
137,380 KB
testcase_16 AC 396 ms
110,620 KB
testcase_17 AC 387 ms
111,008 KB
testcase_18 AC 387 ms
110,364 KB
testcase_19 AC 350 ms
103,464 KB
testcase_20 AC 376 ms
107,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

First, Second = "First", "Second"
ans = []
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    mins = min(A)
    sums = sum(A)
    if (sums - N) % 2 == 1:
        ans.append(First)
    elif N % 2 == 0 and mins % 2 == 0:
        ans.append(First)
    else:
        ans.append(Second)

print(*ans, sep="\n")
0