結果

問題 No.1945 Go Push!
ユーザー lloyzlloyz
提出日時 2022-05-20 21:47:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 11,692 KB
実行使用メモリ 31,804 KB
最終ジャッジ日時 2023-10-20 12:16:27
合計ジャッジ時間 2,556 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,064 KB
testcase_01 AC 28 ms
10,064 KB
testcase_02 AC 28 ms
10,064 KB
testcase_03 AC 28 ms
10,272 KB
testcase_04 AC 28 ms
10,100 KB
testcase_05 AC 29 ms
10,096 KB
testcase_06 AC 28 ms
10,148 KB
testcase_07 AC 29 ms
10,112 KB
testcase_08 AC 46 ms
15,576 KB
testcase_09 AC 47 ms
16,244 KB
testcase_10 AC 77 ms
26,728 KB
testcase_11 AC 47 ms
16,272 KB
testcase_12 AC 64 ms
21,608 KB
testcase_13 AC 68 ms
23,504 KB
testcase_14 AC 31 ms
10,800 KB
testcase_15 AC 47 ms
15,684 KB
testcase_16 AC 47 ms
14,948 KB
testcase_17 AC 44 ms
14,868 KB
testcase_18 AC 55 ms
18,500 KB
testcase_19 AC 81 ms
27,868 KB
testcase_20 AC 71 ms
24,960 KB
testcase_21 AC 53 ms
18,360 KB
testcase_22 AC 94 ms
31,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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