結果

問題 No.1852 Divide or Reduce
ユーザー souta-1326souta-1326
提出日時 2022-04-21 21:27:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 137,356 KB
最終ジャッジ日時 2024-06-23 00:27:27
合計ジャッジ時間 10,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,248 KB
testcase_01 AC 201 ms
77,576 KB
testcase_02 AC 206 ms
77,608 KB
testcase_03 AC 204 ms
77,500 KB
testcase_04 AC 210 ms
77,256 KB
testcase_05 AC 201 ms
77,676 KB
testcase_06 AC 133 ms
123,664 KB
testcase_07 AC 137 ms
127,892 KB
testcase_08 AC 152 ms
132,132 KB
testcase_09 AC 134 ms
123,512 KB
testcase_10 AC 137 ms
111,016 KB
testcase_11 AC 144 ms
136,004 KB
testcase_12 AC 154 ms
136,736 KB
testcase_13 AC 148 ms
135,452 KB
testcase_14 AC 146 ms
137,356 KB
testcase_15 AC 141 ms
137,112 KB
testcase_16 AC 674 ms
102,232 KB
testcase_17 AC 666 ms
102,008 KB
testcase_18 AC 683 ms
102,192 KB
testcase_19 AC 646 ms
103,984 KB
testcase_20 AC 646 ms
102,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  N = int(input())
  A = list(map(int,input().split()))
  for i in range(N):A[i]-=1
  if sum(A)%2:
    print("First");continue
  elif N%2:
    print("Second");continue
  else:
    print("First" if min(A)%2 else "Second")
0