結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,328 KB
testcase_01 AC 73 ms
71,364 KB
testcase_02 AC 72 ms
71,508 KB
testcase_03 AC 77 ms
76,020 KB
testcase_04 AC 72 ms
71,564 KB
testcase_05 AC 74 ms
71,316 KB
testcase_06 AC 76 ms
75,108 KB
testcase_07 AC 77 ms
75,452 KB
testcase_08 AC 87 ms
83,560 KB
testcase_09 AC 90 ms
84,600 KB
testcase_10 AC 116 ms
102,480 KB
testcase_11 AC 90 ms
84,824 KB
testcase_12 AC 102 ms
93,824 KB
testcase_13 AC 109 ms
96,416 KB
testcase_14 AC 77 ms
75,964 KB
testcase_15 AC 88 ms
83,544 KB
testcase_16 AC 86 ms
82,296 KB
testcase_17 AC 85 ms
82,392 KB
testcase_18 AC 93 ms
87,908 KB
testcase_19 AC 117 ms
102,708 KB
testcase_20 AC 110 ms
99,104 KB
testcase_21 AC 92 ms
87,700 KB
testcase_22 AC 133 ms
101,068 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