結果

問題 No.1945 Go Push!
ユーザー pluto77pluto77
提出日時 2022-05-23 13:30:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 11,788 KB
実行使用メモリ 31,788 KB
最終ジャッジ日時 2023-10-20 17:28:03
合計ジャッジ時間 2,314 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,048 KB
testcase_01 AC 28 ms
10,048 KB
testcase_02 AC 30 ms
10,048 KB
testcase_03 AC 32 ms
10,260 KB
testcase_04 AC 28 ms
10,084 KB
testcase_05 AC 29 ms
10,080 KB
testcase_06 AC 29 ms
10,132 KB
testcase_07 AC 28 ms
10,104 KB
testcase_08 AC 45 ms
15,556 KB
testcase_09 AC 47 ms
16,232 KB
testcase_10 AC 79 ms
26,716 KB
testcase_11 AC 47 ms
16,252 KB
testcase_12 AC 62 ms
21,892 KB
testcase_13 AC 68 ms
23,480 KB
testcase_14 AC 31 ms
10,844 KB
testcase_15 AC 45 ms
15,824 KB
testcase_16 AC 43 ms
15,232 KB
testcase_17 AC 43 ms
14,848 KB
testcase_18 AC 55 ms
18,480 KB
testcase_19 AC 80 ms
27,976 KB
testcase_20 AC 71 ms
25,080 KB
testcase_21 AC 52 ms
18,424 KB
testcase_22 AC 94 ms
31,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1945
n=int(input())
a=list(map(int,input().split()))
if n%2:
 print('First')
else:
 print('Second')
0