結果

問題 No.715 集合と二人ゲーム
ユーザー simamumusimamumu
提出日時 2018-07-13 23:15:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 65,488 KB
最終ジャッジ日時 2024-10-09 05:35:37
合計ジャッジ時間 8,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
11,264 KB
testcase_02 WA -
testcase_03 AC 39 ms
11,904 KB
testcase_04 WA -
testcase_05 AC 42 ms
12,416 KB
testcase_06 WA -
testcase_07 AC 45 ms
13,056 KB
testcase_08 WA -
testcase_09 AC 48 ms
13,568 KB
testcase_10 WA -
testcase_11 AC 52 ms
13,924 KB
testcase_12 WA -
testcase_13 AC 57 ms
14,760 KB
testcase_14 WA -
testcase_15 AC 59 ms
15,304 KB
testcase_16 WA -
testcase_17 AC 63 ms
15,532 KB
testcase_18 WA -
testcase_19 AC 68 ms
16,368 KB
testcase_20 WA -
testcase_21 AC 73 ms
17,236 KB
testcase_22 WA -
testcase_23 AC 75 ms
17,900 KB
testcase_24 WA -
testcase_25 AC 79 ms
18,216 KB
testcase_26 WA -
testcase_27 AC 84 ms
18,396 KB
testcase_28 WA -
testcase_29 AC 89 ms
18,892 KB
testcase_30 WA -
testcase_31 AC 75 ms
17,528 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 33 ms
11,008 KB
testcase_36 AC 33 ms
11,136 KB
testcase_37 AC 34 ms
11,136 KB
testcase_38 AC 33 ms
11,008 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 33 ms
11,008 KB
testcase_42 WA -
testcase_43 AC 33 ms
11,008 KB
testcase_44 WA -
testcase_45 AC 33 ms
11,008 KB
testcase_46 WA -
testcase_47 AC 33 ms
11,008 KB
testcase_48 WA -
testcase_49 AC 32 ms
11,008 KB
testcase_50 WA -
testcase_51 AC 344 ms
61,512 KB
testcase_52 WA -
testcase_53 AC 344 ms
58,544 KB
testcase_54 WA -
testcase_55 AC 347 ms
58,380 KB
testcase_56 WA -
testcase_57 AC 320 ms
53,020 KB
testcase_58 WA -
testcase_59 AC 349 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict 
import sys,heapq,bisect,math,itertools,string

N = int(input())
aa = list(map(int,input().split()))

aa.sort()

li = []
num = 1
for i in range(N-1):
	if aa[i+1]-aa[i] == 1:
		num += 1
	else:
		li.append(num)
		num = 1
li.append(num)		
ans = 0		
while 4 in li:
	li.remove(4)

while 1 in li:
	ans += 1
	li.remove(1)

while 2 in li:
	ans += 1
	li.remove(2)
	
for i in li:
	if i < 8 or i%2 == 1:
		print('First')
		sys.exit()

if ans%2 == 0:
	print('Second')
else:
	print('First')
0