結果

問題 No.1852 Divide or Reduce
ユーザー 👑 rin204rin204
提出日時 2022-02-25 22:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 882 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 137,412 KB
最終ジャッジ日時 2024-07-03 16:58:55
合計ジャッジ時間 8,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 284 ms
77,296 KB
testcase_02 AC 250 ms
78,556 KB
testcase_03 AC 248 ms
77,560 KB
testcase_04 AC 241 ms
77,824 KB
testcase_05 AC 246 ms
77,208 KB
testcase_06 AC 145 ms
118,268 KB
testcase_07 AC 158 ms
111,708 KB
testcase_08 AC 151 ms
127,120 KB
testcase_09 AC 142 ms
114,180 KB
testcase_10 AC 154 ms
121,080 KB
testcase_11 AC 152 ms
137,412 KB
testcase_12 AC 155 ms
126,664 KB
testcase_13 AC 156 ms
133,388 KB
testcase_14 AC 159 ms
132,884 KB
testcase_15 AC 165 ms
132,964 KB
testcase_16 AC 724 ms
102,272 KB
testcase_17 AC 766 ms
102,016 KB
testcase_18 AC 764 ms
101,888 KB
testcase_19 AC 882 ms
104,840 KB
testcase_20 AC 743 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    if (sum(A) - n) % 2 == 1:
        print("First")
        return
    B = [a - 1 for a in A]
    if (sum(A) - n) % 2 == 1:
        print("Second")
        return
    mi = min(A)
    cnt = mi - 1
    cnt += sum(a - mi for a in A)
    if cnt % 2 == 1:
        print("First")
    else:
        print("Second")
    
    
for _ in range(int(input())):
    solve()
0