結果

問題 No.1945 Go Push!
ユーザー H20H20
提出日時 2022-03-19 20:36:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 102,748 KB
最終ジャッジ日時 2024-06-01 04:19:34
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,492 KB
testcase_01 AC 39 ms
52,228 KB
testcase_02 AC 39 ms
52,300 KB
testcase_03 AC 41 ms
58,500 KB
testcase_04 AC 39 ms
53,376 KB
testcase_05 AC 38 ms
52,824 KB
testcase_06 AC 38 ms
53,252 KB
testcase_07 AC 39 ms
53,024 KB
testcase_08 AC 52 ms
70,904 KB
testcase_09 AC 54 ms
72,740 KB
testcase_10 AC 76 ms
96,092 KB
testcase_11 AC 55 ms
73,160 KB
testcase_12 AC 66 ms
85,472 KB
testcase_13 AC 68 ms
89,224 KB
testcase_14 AC 44 ms
60,068 KB
testcase_15 AC 52 ms
72,652 KB
testcase_16 AC 52 ms
69,628 KB
testcase_17 AC 51 ms
69,932 KB
testcase_18 AC 58 ms
77,236 KB
testcase_19 AC 77 ms
97,444 KB
testcase_20 AC 71 ms
93,224 KB
testcase_21 AC 58 ms
76,760 KB
testcase_22 AC 97 ms
102,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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