結果

問題 No.715 集合と二人ゲーム
ユーザー tonyu0tonyu0
提出日時 2021-02-02 15:16:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 212,024 KB
最終ジャッジ日時 2024-06-29 23:41:34
合計ジャッジ時間 7,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,648 KB
testcase_01 AC 48 ms
62,336 KB
testcase_02 AC 51 ms
62,848 KB
testcase_03 AC 50 ms
64,000 KB
testcase_04 AC 53 ms
64,768 KB
testcase_05 AC 51 ms
66,176 KB
testcase_06 AC 53 ms
67,200 KB
testcase_07 AC 57 ms
68,864 KB
testcase_08 AC 57 ms
68,736 KB
testcase_09 AC 63 ms
70,400 KB
testcase_10 AC 58 ms
71,424 KB
testcase_11 AC 62 ms
72,832 KB
testcase_12 AC 60 ms
72,192 KB
testcase_13 AC 63 ms
74,240 KB
testcase_14 AC 67 ms
75,776 KB
testcase_15 AC 64 ms
75,520 KB
testcase_16 AC 63 ms
78,080 KB
testcase_17 AC 65 ms
77,952 KB
testcase_18 AC 68 ms
80,128 KB
testcase_19 AC 71 ms
80,384 KB
testcase_20 AC 72 ms
82,560 KB
testcase_21 AC 74 ms
83,200 KB
testcase_22 AC 72 ms
84,608 KB
testcase_23 AC 71 ms
84,608 KB
testcase_24 AC 73 ms
85,504 KB
testcase_25 AC 75 ms
85,248 KB
testcase_26 AC 76 ms
85,632 KB
testcase_27 AC 77 ms
87,808 KB
testcase_28 AC 79 ms
90,368 KB
testcase_29 AC 78 ms
90,624 KB
testcase_30 AC 78 ms
88,320 KB
testcase_31 AC 75 ms
85,248 KB
testcase_32 AC 74 ms
82,816 KB
testcase_33 AC 79 ms
88,192 KB
testcase_34 AC 74 ms
83,200 KB
testcase_35 AC 48 ms
59,648 KB
testcase_36 AC 46 ms
59,904 KB
testcase_37 AC 47 ms
59,776 KB
testcase_38 AC 48 ms
59,776 KB
testcase_39 AC 48 ms
59,520 KB
testcase_40 AC 50 ms
60,544 KB
testcase_41 AC 49 ms
60,416 KB
testcase_42 AC 49 ms
60,160 KB
testcase_43 AC 47 ms
60,160 KB
testcase_44 AC 46 ms
60,544 KB
testcase_45 AC 48 ms
60,544 KB
testcase_46 AC 45 ms
60,288 KB
testcase_47 AC 48 ms
60,032 KB
testcase_48 AC 49 ms
60,288 KB
testcase_49 AC 47 ms
60,288 KB
testcase_50 AC 226 ms
211,736 KB
testcase_51 AC 229 ms
212,024 KB
testcase_52 AC 225 ms
210,972 KB
testcase_53 AC 227 ms
209,084 KB
testcase_54 AC 215 ms
210,316 KB
testcase_55 AC 217 ms
210,392 KB
testcase_56 AC 222 ms
196,520 KB
testcase_57 AC 210 ms
194,004 KB
testcase_58 AC 220 ms
209,884 KB
testcase_59 AC 231 ms
211,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(sorted(set(map(int, input().split()))))

gr=[-1]*99
gr[0]=0
def grundy(x):
    if x<=0:
        return 0
    if gr[x]>=0:
        return gr[x]
    g=set()
    for i in range(1,x+1):
        # iを取ったとき
        # o o x i x o o o
        l=i-2
        r=x-(i+1)
        g.add(grundy(l)^grundy(r))
    res=0
    while res in g:
        res+=1
    gr[x]=res
    return res

g=[grundy(i) for i in range(90)]
#g[54]=0;g[88]=0
all=0
l=a[0]
r=a[0]
for e in a:
    if e>r+1:
        num=r-l+1
        if num>54:num=54+(num-54)%34
        all^=g[num]
        l=e
    r=e

num=r-l+1
if num>54:num=54+(num-54)%34
all^=g[num]

if all:print('First')
else:print('Second')
0