結果

問題 No.715 集合と二人ゲーム
ユーザー vwxyzvwxyz
提出日時 2022-08-10 19:29:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 61,436 KB
最終ジャッジ日時 2024-09-21 05:58:39
合計ジャッジ時間 19,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
10,624 KB
testcase_01 AC 188 ms
10,880 KB
testcase_02 AC 190 ms
11,264 KB
testcase_03 AC 196 ms
11,520 KB
testcase_04 AC 204 ms
11,776 KB
testcase_05 AC 192 ms
12,032 KB
testcase_06 AC 192 ms
12,288 KB
testcase_07 AC 211 ms
12,544 KB
testcase_08 AC 198 ms
12,928 KB
testcase_09 AC 202 ms
13,308 KB
testcase_10 AC 203 ms
13,268 KB
testcase_11 AC 200 ms
13,624 KB
testcase_12 AC 213 ms
13,944 KB
testcase_13 AC 204 ms
14,316 KB
testcase_14 AC 209 ms
14,668 KB
testcase_15 AC 207 ms
14,692 KB
testcase_16 AC 212 ms
15,584 KB
testcase_17 AC 212 ms
15,140 KB
testcase_18 AC 218 ms
15,796 KB
testcase_19 AC 212 ms
15,668 KB
testcase_20 AC 215 ms
16,288 KB
testcase_21 AC 217 ms
16,692 KB
testcase_22 AC 221 ms
16,840 KB
testcase_23 AC 224 ms
16,776 KB
testcase_24 AC 226 ms
17,304 KB
testcase_25 AC 226 ms
17,304 KB
testcase_26 AC 220 ms
17,320 KB
testcase_27 AC 238 ms
18,216 KB
testcase_28 AC 243 ms
18,624 KB
testcase_29 AC 231 ms
18,836 KB
testcase_30 AC 222 ms
17,676 KB
testcase_31 AC 226 ms
16,648 KB
testcase_32 AC 217 ms
16,180 KB
testcase_33 AC 223 ms
17,528 KB
testcase_34 AC 230 ms
16,300 KB
testcase_35 AC 193 ms
10,624 KB
testcase_36 AC 185 ms
10,752 KB
testcase_37 AC 196 ms
10,752 KB
testcase_38 AC 187 ms
10,752 KB
testcase_39 AC 187 ms
10,752 KB
testcase_40 AC 188 ms
10,880 KB
testcase_41 AC 187 ms
10,752 KB
testcase_42 AC 183 ms
10,752 KB
testcase_43 AC 185 ms
10,880 KB
testcase_44 AC 187 ms
10,880 KB
testcase_45 AC 190 ms
10,752 KB
testcase_46 AC 187 ms
10,752 KB
testcase_47 AC 190 ms
10,880 KB
testcase_48 AC 185 ms
10,752 KB
testcase_49 AC 183 ms
10,880 KB
testcase_50 AC 467 ms
61,436 KB
testcase_51 AC 473 ms
61,400 KB
testcase_52 AC 474 ms
61,312 KB
testcase_53 AC 463 ms
61,092 KB
testcase_54 AC 468 ms
61,280 KB
testcase_55 AC 468 ms
60,912 KB
testcase_56 AC 449 ms
58,376 KB
testcase_57 AC 426 ms
52,084 KB
testcase_58 AC 464 ms
61,224 KB
testcase_59 AC 467 ms
61,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from functools import lru_cache
import sys
readline=sys.stdin.readline
sys.setrecursionlimit(10**5)

N=int(readline())
A=sorted(list(map(int,readline().split())))
bound=[0]
for i in range(1,N):
    if A[i]-A[i-1]>=2:
        bound.append(i)
bound.append(N)
le=len(bound)
grundy=[0]*1001
grundy[1]=1
for i in range(2,1000):
    dct=defaultdict(int)
    dct[grundy[i-2]]=2
    for j in range(i-2):
        dct[grundy[j]^grundy[i-j-3]]+=1
    g=0
    while g in dct:
        g+=1
    grundy[i]=g
g=0
for i in range(le-1):
    x=bound[i+1]-bound[i]
    if x>=900:
        x-=900
        x%=34
        x+=900
    g^=grundy[x]
if g:
    ans="First"
else:
    ans="Second"
print(ans)
0