結果

問題 No.1945 Go Push!
ユーザー terasaterasa
提出日時 2022-05-21 19:39:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 107,236 KB
最終ジャッジ日時 2023-10-20 16:35:03
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,336 KB
testcase_01 AC 61 ms
66,336 KB
testcase_02 AC 61 ms
66,336 KB
testcase_03 AC 61 ms
66,884 KB
testcase_04 AC 60 ms
66,336 KB
testcase_05 AC 60 ms
66,336 KB
testcase_06 AC 60 ms
66,336 KB
testcase_07 AC 60 ms
66,336 KB
testcase_08 AC 72 ms
79,588 KB
testcase_09 AC 74 ms
80,696 KB
testcase_10 AC 100 ms
99,068 KB
testcase_11 AC 72 ms
80,708 KB
testcase_12 AC 89 ms
91,404 KB
testcase_13 AC 92 ms
93,568 KB
testcase_14 AC 61 ms
68,932 KB
testcase_15 AC 71 ms
79,632 KB
testcase_16 AC 70 ms
78,608 KB
testcase_17 AC 70 ms
78,576 KB
testcase_18 AC 77 ms
84,724 KB
testcase_19 AC 101 ms
99,504 KB
testcase_20 AC 96 ms
95,740 KB
testcase_21 AC 76 ms
84,528 KB
testcase_22 AC 109 ms
107,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict, Counter
import string
import random

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


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

print('First' if N & 1 else 'Second')
0