結果

問題 No.1945 Go Push!
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-20 22:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 102,208 KB
最終ジャッジ日時 2024-09-20 08:39:35
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,444 KB
testcase_01 AC 33 ms
53,028 KB
testcase_02 AC 33 ms
52,400 KB
testcase_03 AC 37 ms
58,228 KB
testcase_04 AC 34 ms
52,804 KB
testcase_05 AC 34 ms
51,936 KB
testcase_06 AC 35 ms
52,300 KB
testcase_07 AC 34 ms
53,444 KB
testcase_08 AC 49 ms
71,308 KB
testcase_09 AC 48 ms
72,016 KB
testcase_10 AC 71 ms
96,352 KB
testcase_11 AC 49 ms
73,636 KB
testcase_12 AC 60 ms
86,452 KB
testcase_13 AC 63 ms
88,216 KB
testcase_14 AC 40 ms
60,140 KB
testcase_15 AC 50 ms
71,272 KB
testcase_16 AC 48 ms
69,708 KB
testcase_17 AC 50 ms
70,128 KB
testcase_18 AC 53 ms
77,136 KB
testcase_19 AC 69 ms
97,340 KB
testcase_20 AC 67 ms
92,772 KB
testcase_21 AC 54 ms
77,244 KB
testcase_22 AC 95 ms
102,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

input_count = 0
N = oi()
A = mi()

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