結果

問題 No.715 集合と二人ゲーム
ユーザー convexineqconvexineq
提出日時 2021-03-14 16:55:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 178,580 KB
最終ジャッジ日時 2024-11-06 06:39:42
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,116 KB
testcase_01 AC 48 ms
61,816 KB
testcase_02 AC 50 ms
63,664 KB
testcase_03 AC 51 ms
63,800 KB
testcase_04 AC 51 ms
64,524 KB
testcase_05 AC 51 ms
64,784 KB
testcase_06 AC 53 ms
66,424 KB
testcase_07 AC 54 ms
67,064 KB
testcase_08 AC 55 ms
67,676 KB
testcase_09 AC 56 ms
68,256 KB
testcase_10 AC 57 ms
69,236 KB
testcase_11 AC 57 ms
70,212 KB
testcase_12 AC 58 ms
71,560 KB
testcase_13 AC 59 ms
72,052 KB
testcase_14 AC 59 ms
73,072 KB
testcase_15 AC 60 ms
73,448 KB
testcase_16 AC 61 ms
75,048 KB
testcase_17 AC 61 ms
74,564 KB
testcase_18 AC 63 ms
77,788 KB
testcase_19 AC 63 ms
77,508 KB
testcase_20 AC 65 ms
79,124 KB
testcase_21 AC 66 ms
79,660 KB
testcase_22 AC 68 ms
81,460 KB
testcase_23 AC 66 ms
80,520 KB
testcase_24 AC 68 ms
80,820 KB
testcase_25 AC 68 ms
81,168 KB
testcase_26 AC 67 ms
80,828 KB
testcase_27 AC 70 ms
84,044 KB
testcase_28 AC 72 ms
85,784 KB
testcase_29 AC 72 ms
85,412 KB
testcase_30 AC 73 ms
84,424 KB
testcase_31 AC 70 ms
80,464 KB
testcase_32 AC 67 ms
78,568 KB
testcase_33 AC 72 ms
84,628 KB
testcase_34 AC 67 ms
78,888 KB
testcase_35 AC 44 ms
54,636 KB
testcase_36 AC 42 ms
55,072 KB
testcase_37 AC 43 ms
53,924 KB
testcase_38 AC 43 ms
55,520 KB
testcase_39 AC 43 ms
54,484 KB
testcase_40 AC 47 ms
60,276 KB
testcase_41 AC 46 ms
59,948 KB
testcase_42 AC 46 ms
59,536 KB
testcase_43 AC 47 ms
60,776 KB
testcase_44 AC 46 ms
59,760 KB
testcase_45 AC 46 ms
60,772 KB
testcase_46 AC 46 ms
60,888 KB
testcase_47 AC 47 ms
60,756 KB
testcase_48 AC 47 ms
59,892 KB
testcase_49 AC 47 ms
59,968 KB
testcase_50 AC 206 ms
177,604 KB
testcase_51 AC 206 ms
178,240 KB
testcase_52 AC 205 ms
177,392 KB
testcase_53 AC 203 ms
175,996 KB
testcase_54 AC 202 ms
177,368 KB
testcase_55 AC 202 ms
177,832 KB
testcase_56 AC 195 ms
166,300 KB
testcase_57 AC 192 ms
161,616 KB
testcase_58 AC 206 ms
177,292 KB
testcase_59 AC 207 ms
178,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*g, = map(int,"0112031103322405223301130211045274011203110332244552330113021104537481120311033224455933011302110453748112031103322")
n = int(input())
*a, = map(int,input().split())
a.sort()
for i in range(n): a[i] -= i
from collections import Counter
res = 0
for x in Counter(a).values():
    res ^= g[x] if x < 81 else g[81+(x-81)%34]
print("First" if res else "Second")
0