結果

問題 No.2044 Infinite Nim
ユーザー shotoyooshotoyoo
提出日時 2022-08-20 01:10:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 86,696 KB
最終ジャッジ日時 2024-10-08 13:18:48
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,816 KB
testcase_01 AC 45 ms
54,516 KB
testcase_02 AC 42 ms
54,768 KB
testcase_03 AC 42 ms
54,376 KB
testcase_04 AC 41 ms
54,384 KB
testcase_05 AC 41 ms
54,596 KB
testcase_06 AC 44 ms
55,360 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
54,552 KB
testcase_10 AC 41 ms
54,808 KB
testcase_11 AC 41 ms
55,036 KB
testcase_12 AC 41 ms
55,016 KB
testcase_13 AC 57 ms
74,572 KB
testcase_14 AC 50 ms
68,820 KB
testcase_15 WA -
testcase_16 AC 51 ms
68,128 KB
testcase_17 AC 60 ms
76,964 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 55 ms
73,552 KB
testcase_21 WA -
testcase_22 AC 56 ms
74,480 KB
testcase_23 AC 52 ms
70,140 KB
testcase_24 AC 59 ms
78,820 KB
testcase_25 AC 51 ms
70,044 KB
testcase_26 AC 60 ms
76,280 KB
testcase_27 AC 54 ms
69,748 KB
testcase_28 AC 65 ms
82,844 KB
testcase_29 AC 52 ms
72,720 KB
testcase_30 AC 59 ms
78,872 KB
testcase_31 AC 65 ms
84,812 KB
testcase_32 AC 67 ms
84,020 KB
testcase_33 AC 65 ms
83,828 KB
testcase_34 AC 59 ms
80,648 KB
testcase_35 AC 65 ms
86,696 KB
testcase_36 AC 40 ms
56,136 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==0:
    pans(x!=0)
else:
    pans(c%2)
0