結果

問題 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
コンパイル時間 589 ms
コンパイル使用メモリ 11,716 KB
実行使用メモリ 31,856 KB
最終ジャッジ日時 2023-10-20 12:36:52
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
9,972 KB
testcase_02 AC 30 ms
9,972 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 29 ms
10,048 KB
testcase_07 AC 29 ms
10,020 KB
testcase_08 AC 47 ms
15,632 KB
testcase_09 AC 48 ms
16,300 KB
testcase_10 AC 78 ms
26,784 KB
testcase_11 WA -
testcase_12 AC 64 ms
21,660 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 47 ms
15,740 KB
testcase_16 AC 45 ms
15,004 KB
testcase_17 AC 44 ms
14,924 KB
testcase_18 AC 55 ms
18,552 KB
testcase_19 WA -
testcase_20 AC 72 ms
24,748 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