結果

問題 No.2044 Infinite Nim
ユーザー shotoyooshotoyoo
提出日時 2022-08-20 01:20:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 86,356 KB
最終ジャッジ日時 2024-10-09 06:08:58
合計ジャッジ時間 3,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,172 KB
testcase_01 AC 41 ms
54,596 KB
testcase_02 AC 41 ms
54,900 KB
testcase_03 AC 42 ms
54,492 KB
testcase_04 AC 41 ms
55,024 KB
testcase_05 AC 41 ms
54,440 KB
testcase_06 AC 41 ms
54,680 KB
testcase_07 AC 41 ms
54,712 KB
testcase_08 AC 41 ms
54,400 KB
testcase_09 AC 41 ms
54,400 KB
testcase_10 AC 40 ms
54,924 KB
testcase_11 AC 42 ms
55,136 KB
testcase_12 AC 40 ms
54,608 KB
testcase_13 AC 57 ms
73,468 KB
testcase_14 AC 51 ms
69,624 KB
testcase_15 AC 52 ms
68,516 KB
testcase_16 AC 51 ms
69,328 KB
testcase_17 AC 59 ms
76,780 KB
testcase_18 AC 50 ms
67,808 KB
testcase_19 AC 51 ms
68,364 KB
testcase_20 AC 56 ms
72,744 KB
testcase_21 AC 62 ms
79,748 KB
testcase_22 AC 56 ms
74,456 KB
testcase_23 AC 54 ms
70,552 KB
testcase_24 AC 61 ms
77,084 KB
testcase_25 AC 53 ms
70,676 KB
testcase_26 AC 60 ms
77,020 KB
testcase_27 AC 52 ms
69,100 KB
testcase_28 AC 67 ms
83,240 KB
testcase_29 AC 55 ms
73,060 KB
testcase_30 AC 61 ms
78,396 KB
testcase_31 AC 67 ms
84,508 KB
testcase_32 AC 65 ms
85,052 KB
testcase_33 AC 67 ms
84,680 KB
testcase_34 AC 60 ms
80,720 KB
testcase_35 AC 67 ms
86,356 KB
testcase_36 AC 40 ms
56,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input())
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
a = list(map(int, input().split()))
c = 0
x = 0
for v in a:
    if v==-1:
        c += 1
    else:
        x ^= v
YES = "First"
NO = "Second"
if c%2:
    pans(1)
else:
    pans(x!=0)
0