結果

問題 No.1945 Go Push!
ユーザー stngstng
提出日時 2022-05-21 16:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 101,868 KB
最終ジャッジ日時 2023-10-20 16:19:38
合計ジャッジ時間 3,552 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,208 KB
testcase_01 AC 35 ms
53,208 KB
testcase_02 AC 34 ms
53,208 KB
testcase_03 AC 38 ms
59,316 KB
testcase_04 AC 35 ms
53,208 KB
testcase_05 AC 35 ms
53,208 KB
testcase_06 AC 35 ms
53,208 KB
testcase_07 AC 36 ms
53,208 KB
testcase_08 AC 47 ms
68,016 KB
testcase_09 AC 47 ms
68,736 KB
testcase_10 AC 64 ms
85,520 KB
testcase_11 AC 47 ms
68,752 KB
testcase_12 AC 56 ms
78,292 KB
testcase_13 AC 60 ms
79,904 KB
testcase_14 AC 39 ms
59,316 KB
testcase_15 AC 46 ms
68,064 KB
testcase_16 AC 46 ms
67,372 KB
testcase_17 AC 46 ms
67,328 KB
testcase_18 AC 51 ms
72,752 KB
testcase_19 AC 65 ms
87,888 KB
testcase_20 AC 60 ms
83,572 KB
testcase_21 AC 52 ms
72,676 KB
testcase_22 AC 85 ms
101,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]

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