結果

問題 No.1852 Divide or Reduce
ユーザー colognecologne
提出日時 2022-02-25 21:46:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,971 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,292 KB
最終ジャッジ日時 2024-12-12 11:44:55
合計ジャッジ時間 19,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 413 ms
10,496 KB
testcase_02 AC 424 ms
10,368 KB
testcase_03 AC 414 ms
10,496 KB
testcase_04 AC 410 ms
10,368 KB
testcase_05 AC 407 ms
10,624 KB
testcase_06 AC 251 ms
27,236 KB
testcase_07 AC 263 ms
36,400 KB
testcase_08 AC 257 ms
37,324 KB
testcase_09 AC 253 ms
27,772 KB
testcase_10 AC 264 ms
35,712 KB
testcase_11 AC 265 ms
42,172 KB
testcase_12 AC 262 ms
42,172 KB
testcase_13 AC 263 ms
42,292 KB
testcase_14 AC 263 ms
42,184 KB
testcase_15 AC 264 ms
42,164 KB
testcase_16 AC 1,971 ms
34,500 KB
testcase_17 AC 1,936 ms
34,204 KB
testcase_18 AC 1,931 ms
34,460 KB
testcase_19 AC 1,947 ms
14,604 KB
testcase_20 AC 1,943 ms
33,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    T = int(input())
    for i in range(T):
        N = int(input())
        *A, = map(lambda x: int(x)-1, input().split())
        s = sum(A)
        m = min(A)
        if s % 2 == 1 or (s % 2 == 0 and N % 2 == 0 and m % 2 == 1):
            print('First')
        else:
            print('Second')


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