結果

問題 No.1945 Go Push!
ユーザー 👑 H20H20
提出日時 2022-04-10 18:28:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 87,180 KB
実行使用メモリ 103,000 KB
最終ジャッジ日時 2023-08-23 06:36:26
合計ジャッジ時間 3,579 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,620 KB
testcase_01 AC 74 ms
71,420 KB
testcase_02 AC 71 ms
71,536 KB
testcase_03 AC 77 ms
75,900 KB
testcase_04 AC 73 ms
71,148 KB
testcase_05 AC 75 ms
71,392 KB
testcase_06 AC 74 ms
75,048 KB
testcase_07 AC 73 ms
75,268 KB
testcase_08 AC 87 ms
83,456 KB
testcase_09 AC 90 ms
84,712 KB
testcase_10 AC 115 ms
102,452 KB
testcase_11 AC 87 ms
84,668 KB
testcase_12 AC 103 ms
93,756 KB
testcase_13 AC 105 ms
96,448 KB
testcase_14 AC 78 ms
75,892 KB
testcase_15 AC 88 ms
83,620 KB
testcase_16 AC 86 ms
82,352 KB
testcase_17 AC 86 ms
82,260 KB
testcase_18 AC 95 ms
87,988 KB
testcase_19 AC 117 ms
103,000 KB
testcase_20 AC 111 ms
98,992 KB
testcase_21 AC 93 ms
87,688 KB
testcase_22 AC 131 ms
101,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) 
if 1<=N<=2*10**5 and len(A)==N and 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