結果

問題 No.1945 Go Push!
ユーザー H20H20
提出日時 2022-04-10 18:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 102,584 KB
最終ジャッジ日時 2024-06-01 04:19:41
合計ジャッジ時間 2,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,552 KB
testcase_01 AC 39 ms
52,272 KB
testcase_02 AC 39 ms
52,944 KB
testcase_03 AC 42 ms
59,424 KB
testcase_04 AC 40 ms
52,496 KB
testcase_05 AC 40 ms
52,268 KB
testcase_06 AC 42 ms
57,468 KB
testcase_07 AC 41 ms
58,176 KB
testcase_08 AC 56 ms
73,356 KB
testcase_09 AC 59 ms
76,132 KB
testcase_10 AC 88 ms
101,228 KB
testcase_11 AC 60 ms
75,676 KB
testcase_12 AC 71 ms
89,652 KB
testcase_13 AC 76 ms
94,256 KB
testcase_14 AC 45 ms
60,456 KB
testcase_15 AC 57 ms
73,980 KB
testcase_16 AC 55 ms
71,900 KB
testcase_17 AC 57 ms
71,904 KB
testcase_18 AC 64 ms
80,756 KB
testcase_19 AC 90 ms
101,528 KB
testcase_20 AC 84 ms
98,236 KB
testcase_21 AC 63 ms
80,624 KB
testcase_22 AC 107 ms
102,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) 
if A==A[::-1] and 1<=max(A)<=10**9 and 1<=min(A)<=10**9:
    if N%2==0:
        print('Second')
    else:
        print('First')
0