結果

問題 No.1267 Stop and Coin Game
ユーザー ああいいああいい
提出日時 2022-02-19 16:14:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,010 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-06-29 10:27:00
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 51 ms
62,848 KB
testcase_06 AC 46 ms
60,928 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 92 ms
77,696 KB
testcase_09 AC 43 ms
59,008 KB
testcase_10 AC 258 ms
92,032 KB
testcase_11 AC 112 ms
80,128 KB
testcase_12 AC 59 ms
67,328 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 46 ms
59,904 KB
testcase_16 AC 243 ms
92,240 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 57 ms
65,024 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 45 ms
60,032 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 57 ms
65,536 KB
testcase_23 AC 38 ms
51,936 KB
testcase_24 AC 158 ms
84,224 KB
testcase_25 AC 170 ms
83,804 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 65 ms
67,328 KB
testcase_28 AC 38 ms
52,224 KB
testcase_29 AC 57 ms
65,536 KB
testcase_30 AC 321 ms
91,936 KB
testcase_31 AC 55 ms
65,408 KB
testcase_32 AC 80 ms
74,112 KB
testcase_33 AC 171 ms
83,864 KB
testcase_34 AC 150 ms
84,124 KB
testcase_35 AC 337 ms
91,716 KB
testcase_36 AC 37 ms
51,840 KB
testcase_37 AC 84 ms
77,824 KB
testcase_38 AC 256 ms
92,416 KB
testcase_39 AC 69 ms
71,808 KB
testcase_40 AC 38 ms
51,840 KB
testcase_41 AC 65 ms
70,272 KB
testcase_42 AC 38 ms
52,224 KB
testcase_43 AC 73 ms
75,008 KB
testcase_44 AC 37 ms
51,584 KB
testcase_45 WA -
testcase_46 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V = map(int,input().split())
A = list(map(int,input().split()))
S = sum(A)
import sys
if S < V:
    print("Draw")
    exit()
sys.setrecursionlimit(10 ** 8 )
dat = [0] * (1 << N)
for bit in range(1,1 << N):
    for i in range(N):
        mask = 1 << i
        if bit & mask:
            dat[bit] = A[i] + dat[bit ^ mask]
            break
"""
from functools import lru_cache
@lru_cache
def calc(S = 0):
    #flag = S.count('1')
    for i in range(N):
        mask = 1 << i
        if S & mask:continue
        if dat[S | mask] > V:continue
        a = calc(S | mask)
        if a == False:return True
    return False
"""
grundy = [0] * (1 << N)
for bit in range((1 << N)-1,-1,-1):
    flag = False
    for i in range(N):
        mask = 1 << i
        if bit & mask:continue
        if dat[bit | mask] > V:continue
        if grundy[bit | mask] == 0:
            flag = True
            break
    if flag:
        grundy[bit] = 1
    else:
        grundy[bit] = 0



print('First' if grundy[0] else "Second")
0