結果

問題 No.1945 Go Push!
ユーザー KazunKazun
提出日時 2022-05-20 21:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 102,260 KB
最終ジャッジ日時 2024-09-20 07:16:56
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,704 KB
testcase_01 AC 34 ms
52,432 KB
testcase_02 AC 34 ms
52,292 KB
testcase_03 AC 37 ms
58,560 KB
testcase_04 AC 34 ms
52,552 KB
testcase_05 AC 34 ms
53,312 KB
testcase_06 AC 35 ms
52,028 KB
testcase_07 AC 35 ms
53,020 KB
testcase_08 AC 51 ms
71,136 KB
testcase_09 AC 49 ms
73,464 KB
testcase_10 AC 67 ms
96,828 KB
testcase_11 AC 48 ms
72,760 KB
testcase_12 AC 59 ms
84,492 KB
testcase_13 AC 61 ms
88,632 KB
testcase_14 AC 39 ms
59,400 KB
testcase_15 AC 46 ms
71,540 KB
testcase_16 AC 46 ms
69,436 KB
testcase_17 AC 47 ms
69,960 KB
testcase_18 AC 54 ms
77,092 KB
testcase_19 AC 70 ms
98,040 KB
testcase_20 AC 65 ms
92,092 KB
testcase_21 AC 52 ms
77,608 KB
testcase_22 AC 90 ms
102,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

if N%2==1:
    print("First")
else:
    print("Second")
0