結果

問題 No.1945 Go Push!
ユーザー titiatitia
提出日時 2022-05-20 21:59:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-09-20 08:06:16
合計ジャッジ時間 2,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 26 ms
10,368 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 42 ms
16,208 KB
testcase_09 AC 42 ms
16,756 KB
testcase_10 AC 77 ms
27,364 KB
testcase_11 WA -
testcase_12 AC 60 ms
22,420 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 43 ms
16,448 KB
testcase_16 AC 40 ms
15,716 KB
testcase_17 AC 40 ms
15,640 KB
testcase_18 AC 53 ms
19,224 KB
testcase_19 WA -
testcase_20 AC 69 ms
25,352 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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