結果

問題 No.1945 Go Push!
ユーザー negibose2020negibose2020
提出日時 2022-05-21 20:32:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 102,364 KB
最終ジャッジ日時 2023-10-20 16:37:09
合計ジャッジ時間 2,336 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,492 KB
testcase_01 AC 34 ms
53,492 KB
testcase_02 AC 34 ms
53,492 KB
testcase_03 AC 37 ms
59,500 KB
testcase_04 AC 33 ms
53,492 KB
testcase_05 AC 34 ms
53,492 KB
testcase_06 AC 35 ms
53,492 KB
testcase_07 AC 33 ms
53,492 KB
testcase_08 AC 45 ms
70,672 KB
testcase_09 AC 49 ms
73,884 KB
testcase_10 AC 70 ms
96,980 KB
testcase_11 AC 50 ms
73,900 KB
testcase_12 AC 60 ms
84,628 KB
testcase_13 AC 65 ms
89,196 KB
testcase_14 AC 37 ms
59,500 KB
testcase_15 AC 49 ms
70,720 KB
testcase_16 AC 46 ms
69,636 KB
testcase_17 AC 48 ms
69,588 KB
testcase_18 AC 52 ms
76,924 KB
testcase_19 AC 70 ms
97,300 KB
testcase_20 AC 65 ms
91,836 KB
testcase_21 AC 51 ms
76,848 KB
testcase_22 AC 87 ms
102,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
print("First") if n&1==1 else print("Second")
0