結果

問題 No.715 集合と二人ゲーム
ユーザー mkawa2mkawa2
提出日時 2022-01-25 15:47:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,307 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,404 KB
最終ジャッジ日時 2024-05-09 15:43:33
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 27 ms
11,392 KB
testcase_03 AC 29 ms
11,776 KB
testcase_04 AC 29 ms
11,776 KB
testcase_05 AC 31 ms
12,160 KB
testcase_06 AC 32 ms
12,416 KB
testcase_07 AC 34 ms
12,544 KB
testcase_08 WA -
testcase_09 AC 38 ms
13,288 KB
testcase_10 AC 38 ms
13,380 KB
testcase_11 AC 43 ms
13,600 KB
testcase_12 AC 40 ms
13,796 KB
testcase_13 AC 42 ms
14,412 KB
testcase_14 AC 45 ms
14,744 KB
testcase_15 AC 45 ms
14,800 KB
testcase_16 WA -
testcase_17 AC 50 ms
15,252 KB
testcase_18 AC 50 ms
15,640 KB
testcase_19 AC 51 ms
15,780 KB
testcase_20 AC 53 ms
16,396 KB
testcase_21 AC 54 ms
16,672 KB
testcase_22 AC 57 ms
16,860 KB
testcase_23 AC 56 ms
16,760 KB
testcase_24 AC 59 ms
17,280 KB
testcase_25 AC 61 ms
17,284 KB
testcase_26 AC 61 ms
17,556 KB
testcase_27 AC 65 ms
18,188 KB
testcase_28 AC 67 ms
18,600 KB
testcase_29 AC 66 ms
18,816 KB
testcase_30 AC 62 ms
17,612 KB
testcase_31 AC 58 ms
16,636 KB
testcase_32 AC 54 ms
16,164 KB
testcase_33 AC 61 ms
17,504 KB
testcase_34 AC 55 ms
16,280 KB
testcase_35 AC 24 ms
10,624 KB
testcase_36 AC 25 ms
10,752 KB
testcase_37 AC 24 ms
10,752 KB
testcase_38 AC 24 ms
10,624 KB
testcase_39 AC 24 ms
10,752 KB
testcase_40 AC 24 ms
10,752 KB
testcase_41 AC 25 ms
10,752 KB
testcase_42 AC 25 ms
10,752 KB
testcase_43 AC 26 ms
10,752 KB
testcase_44 AC 24 ms
10,752 KB
testcase_45 AC 24 ms
10,880 KB
testcase_46 AC 24 ms
10,752 KB
testcase_47 AC 24 ms
10,624 KB
testcase_48 AC 25 ms
10,880 KB
testcase_49 AC 24 ms
10,880 KB
testcase_50 AC 294 ms
61,276 KB
testcase_51 AC 289 ms
61,232 KB
testcase_52 AC 289 ms
61,400 KB
testcase_53 AC 300 ms
61,164 KB
testcase_54 AC 283 ms
61,400 KB
testcase_55 AC 284 ms
60,744 KB
testcase_56 AC 268 ms
58,568 KB
testcase_57 AC 265 ms
51,928 KB
testcase_58 WA -
testcase_59 AC 279 ms
61,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
# md = 10**9+7
md = 998244353

pre = [0, 1, 1, 2, 0, 3, 1, 1, 0, 3, 3, 2, 2, 4, 0, 5, 2, 2, 3, 3, 0, 1, 1, 3, 0, 2, 1, 1, 0, 4, 5, 2, 7, 4, 0, 1, 1, 2,
       0, 3, 1, 1]
gg = [0, 3, 3, 2, 2, 4, 4, 5, 5, 2, 3, 3, 0, 1, 1, 3, 0, 2, 1, 1, 0, 4, 5, 3, 7, 4, 8, 1, 1, 2, 0, 3, 1, 1]

def grundy(a):
    if a == 51: return 2
    if a < 42: return pre[a]
    return gg[(a-42)%34]

n = II()
aa = LI()

aa.sort()
ss = []
pa = aa[0]
cnt = 1
x = 0
for a in aa[1:]:
    if a == pa+1:
        cnt += 1
    else:
        x ^= grundy(cnt)
        cnt = 1
    pa = a
x ^= grundy(cnt)

print("First" if x else "Second")
0