結果

問題 No.1945 Go Push!
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-20 21:35:32
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 11,740 KB
実行使用メモリ 31,888 KB
最終ジャッジ日時 2023-10-20 11:55:39
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,148 KB
testcase_01 AC 28 ms
10,148 KB
testcase_02 AC 28 ms
10,148 KB
testcase_03 AC 29 ms
10,356 KB
testcase_04 AC 29 ms
10,184 KB
testcase_05 AC 28 ms
10,180 KB
testcase_06 AC 28 ms
10,232 KB
testcase_07 AC 29 ms
10,196 KB
testcase_08 AC 46 ms
15,660 KB
testcase_09 AC 46 ms
16,328 KB
testcase_10 AC 77 ms
26,812 KB
testcase_11 AC 47 ms
16,356 KB
testcase_12 AC 63 ms
21,692 KB
testcase_13 AC 66 ms
23,588 KB
testcase_14 AC 30 ms
10,884 KB
testcase_15 AC 46 ms
15,768 KB
testcase_16 AC 44 ms
15,032 KB
testcase_17 AC 41 ms
14,952 KB
testcase_18 AC 51 ms
18,584 KB
testcase_19 AC 79 ms
27,952 KB
testcase_20 AC 71 ms
25,044 KB
testcase_21 AC 52 ms
18,444 KB
testcase_22 AC 93 ms
31,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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