結果

問題 No.715 集合と二人ゲーム
ユーザー maspymaspy
提出日時 2020-03-31 15:00:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 59,680 KB
最終ジャッジ日時 2024-06-24 16:36:27
合計ジャッジ時間 18,073 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
10,752 KB
testcase_01 AC 202 ms
11,008 KB
testcase_02 AC 203 ms
11,264 KB
testcase_03 AC 203 ms
11,648 KB
testcase_04 AC 205 ms
11,904 KB
testcase_05 AC 206 ms
12,032 KB
testcase_06 AC 211 ms
12,416 KB
testcase_07 AC 210 ms
12,416 KB
testcase_08 AC 211 ms
12,988 KB
testcase_09 AC 215 ms
13,164 KB
testcase_10 AC 214 ms
13,160 KB
testcase_11 AC 218 ms
13,632 KB
testcase_12 AC 221 ms
13,804 KB
testcase_13 AC 222 ms
14,420 KB
testcase_14 AC 222 ms
14,672 KB
testcase_15 AC 222 ms
14,696 KB
testcase_16 AC 228 ms
15,420 KB
testcase_17 AC 227 ms
15,360 KB
testcase_18 AC 228 ms
15,932 KB
testcase_19 AC 228 ms
16,192 KB
testcase_20 AC 235 ms
16,300 KB
testcase_21 AC 234 ms
16,576 KB
testcase_22 AC 235 ms
16,848 KB
testcase_23 AC 235 ms
16,532 KB
testcase_24 AC 239 ms
17,816 KB
testcase_25 AC 238 ms
17,952 KB
testcase_26 AC 240 ms
17,972 KB
testcase_27 AC 239 ms
18,096 KB
testcase_28 AC 242 ms
18,504 KB
testcase_29 AC 250 ms
18,848 KB
testcase_30 AC 243 ms
18,076 KB
testcase_31 AC 235 ms
16,788 KB
testcase_32 AC 234 ms
16,068 KB
testcase_33 AC 240 ms
17,924 KB
testcase_34 AC 237 ms
16,416 KB
testcase_35 AC 201 ms
10,752 KB
testcase_36 AC 201 ms
10,752 KB
testcase_37 AC 205 ms
10,752 KB
testcase_38 AC 202 ms
10,880 KB
testcase_39 AC 203 ms
10,752 KB
testcase_40 AC 200 ms
10,880 KB
testcase_41 AC 199 ms
10,752 KB
testcase_42 AC 200 ms
10,752 KB
testcase_43 AC 201 ms
10,880 KB
testcase_44 AC 204 ms
10,880 KB
testcase_45 AC 205 ms
10,752 KB
testcase_46 AC 201 ms
10,752 KB
testcase_47 AC 203 ms
10,752 KB
testcase_48 AC 204 ms
10,752 KB
testcase_49 AC 200 ms
10,880 KB
testcase_50 AC 472 ms
59,428 KB
testcase_51 AC 474 ms
59,676 KB
testcase_52 AC 476 ms
59,544 KB
testcase_53 AC 484 ms
59,448 KB
testcase_54 AC 488 ms
59,680 KB
testcase_55 AC 476 ms
59,152 KB
testcase_56 AC 461 ms
57,104 KB
testcase_57 AC 454 ms
54,404 KB
testcase_58 AC 485 ms
59,548 KB
testcase_59 AC 472 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from functools import lru_cache


@lru_cache(None)
def G(n):
    if n == 0:
        return 0
    if n == 1:
        return 1
    if n == 2:
        return 1
    nums = []
    nums.append(G(n - 2))
    for k in range(3, n + 1):
        nums.append(G(k - 3) ^ G(n - k))
    g = 0
    nums = set(nums)
    while g in nums:
        g += 1
    return g


U = 1000
G = [G(n) for n in range(U)]

"""
from matplotlib import pyplot as plt
plt.figure(figsize=(16,4))
plt.plot(range(300), A[:300])
"""

N = int(readline())
A = sorted(map(int, read().split()))
nums = []
prev = -10
n = 0
for x in A:
    if x == prev + 1:
        n += 1
    else:
        nums.append(n)
        n = 1
    prev = x
nums.append(n)

xor = 0
for n in nums:
    if n < U:
        xor ^= G[n]
    else:
        xor ^= G[n % 34 + 340]
print('First' if xor else 'Second')
0