結果

問題 No.1945 Go Push!
ユーザー ikomaikoma
提出日時 2022-05-20 22:07:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 102,552 KB
最終ジャッジ日時 2024-09-20 08:17:29
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,644 KB
testcase_01 AC 34 ms
53,244 KB
testcase_02 AC 41 ms
53,020 KB
testcase_03 AC 38 ms
58,672 KB
testcase_04 AC 39 ms
52,084 KB
testcase_05 AC 36 ms
54,108 KB
testcase_06 AC 35 ms
52,448 KB
testcase_07 AC 34 ms
52,988 KB
testcase_08 AC 49 ms
72,052 KB
testcase_09 AC 52 ms
72,976 KB
testcase_10 AC 72 ms
96,320 KB
testcase_11 AC 52 ms
73,060 KB
testcase_12 AC 62 ms
85,104 KB
testcase_13 AC 66 ms
89,240 KB
testcase_14 AC 39 ms
60,020 KB
testcase_15 AC 48 ms
71,396 KB
testcase_16 AC 47 ms
71,140 KB
testcase_17 AC 47 ms
70,252 KB
testcase_18 AC 55 ms
77,608 KB
testcase_19 AC 74 ms
98,316 KB
testcase_20 AC 68 ms
93,292 KB
testcase_21 AC 55 ms
77,768 KB
testcase_22 AC 92 ms
102,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
print("First" if N%2==1 else "Second")
0