結果

問題 No.1945 Go Push!
ユーザー H20H20
提出日時 2022-04-10 18:28:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-06-01 04:19:44
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 42 ms
58,496 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 42 ms
56,960 KB
testcase_07 AC 40 ms
56,576 KB
testcase_08 AC 56 ms
73,216 KB
testcase_09 AC 57 ms
75,008 KB
testcase_10 AC 91 ms
101,248 KB
testcase_11 AC 60 ms
74,900 KB
testcase_12 AC 72 ms
88,832 KB
testcase_13 AC 74 ms
93,164 KB
testcase_14 AC 43 ms
60,132 KB
testcase_15 AC 54 ms
73,216 KB
testcase_16 AC 53 ms
71,552 KB
testcase_17 AC 53 ms
71,424 KB
testcase_18 AC 62 ms
80,512 KB
testcase_19 AC 87 ms
101,928 KB
testcase_20 AC 81 ms
97,980 KB
testcase_21 AC 61 ms
79,720 KB
testcase_22 AC 104 ms
102,144 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