結果

問題 No.1945 Go Push!
ユーザー 👑 KazunKazun
提出日時 2022-05-20 21:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 102,216 KB
最終ジャッジ日時 2023-10-20 11:44:45
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,336 KB
testcase_01 AC 40 ms
53,336 KB
testcase_02 AC 39 ms
53,336 KB
testcase_03 AC 41 ms
59,340 KB
testcase_04 AC 38 ms
53,336 KB
testcase_05 AC 39 ms
53,336 KB
testcase_06 AC 39 ms
53,336 KB
testcase_07 AC 37 ms
53,336 KB
testcase_08 AC 51 ms
70,512 KB
testcase_09 AC 53 ms
73,724 KB
testcase_10 AC 75 ms
96,820 KB
testcase_11 AC 53 ms
73,740 KB
testcase_12 AC 62 ms
84,468 KB
testcase_13 AC 67 ms
89,036 KB
testcase_14 AC 42 ms
59,340 KB
testcase_15 AC 50 ms
70,560 KB
testcase_16 AC 49 ms
69,476 KB
testcase_17 AC 48 ms
69,428 KB
testcase_18 AC 56 ms
76,764 KB
testcase_19 AC 75 ms
97,140 KB
testcase_20 AC 70 ms
91,676 KB
testcase_21 AC 56 ms
76,688 KB
testcase_22 AC 96 ms
102,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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