結果

問題 No.2044 Infinite Nim
ユーザー asumo0729asumo0729
提出日時 2022-08-19 21:36:16
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 917 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 94,824 KB
最終ジャッジ日時 2024-10-09 06:02:01
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,696 KB
testcase_01 AC 50 ms
61,536 KB
testcase_02 AC 48 ms
61,464 KB
testcase_03 AC 50 ms
61,872 KB
testcase_04 AC 50 ms
61,748 KB
testcase_05 AC 49 ms
62,000 KB
testcase_06 AC 49 ms
61,960 KB
testcase_07 AC 49 ms
61,948 KB
testcase_08 AC 48 ms
61,604 KB
testcase_09 AC 49 ms
62,440 KB
testcase_10 AC 49 ms
62,244 KB
testcase_11 AC 48 ms
61,580 KB
testcase_12 AC 48 ms
61,176 KB
testcase_13 AC 66 ms
79,760 KB
testcase_14 AC 59 ms
74,052 KB
testcase_15 AC 59 ms
74,516 KB
testcase_16 AC 60 ms
73,664 KB
testcase_17 AC 69 ms
83,260 KB
testcase_18 AC 59 ms
72,232 KB
testcase_19 AC 61 ms
73,268 KB
testcase_20 AC 65 ms
79,148 KB
testcase_21 AC 73 ms
87,580 KB
testcase_22 AC 67 ms
80,804 KB
testcase_23 AC 62 ms
75,748 KB
testcase_24 AC 69 ms
84,680 KB
testcase_25 AC 61 ms
74,440 KB
testcase_26 AC 69 ms
82,560 KB
testcase_27 AC 62 ms
75,284 KB
testcase_28 AC 80 ms
93,288 KB
testcase_29 AC 66 ms
79,052 KB
testcase_30 AC 73 ms
86,364 KB
testcase_31 AC 79 ms
93,132 KB
testcase_32 AC 81 ms
93,160 KB
testcase_33 AC 78 ms
92,720 KB
testcase_34 AC 74 ms
90,348 KB
testcase_35 AC 80 ms
94,824 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
## import pypyjit
## pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])



###############################################################

N = ip()
A = lp()
B = []
for a in A:
    if a == -1:
        B.append(2)
    else:
        B.append(a)
x = 0
for b in B:
    x ^= b
if x != 0:
    ans = 'First'
else:
    ans = 'Second'
print(ans)
0