結果

問題 No.1267 Stop and Coin Game
ユーザー ああいいああいい
提出日時 2022-02-19 16:15:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-06-29 10:27:06
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,120 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 44 ms
63,104 KB
testcase_06 AC 41 ms
60,928 KB
testcase_07 AC 33 ms
51,584 KB
testcase_08 AC 80 ms
77,952 KB
testcase_09 AC 38 ms
59,008 KB
testcase_10 AC 231 ms
92,416 KB
testcase_11 AC 99 ms
79,916 KB
testcase_12 AC 55 ms
67,328 KB
testcase_13 AC 35 ms
52,480 KB
testcase_14 AC 33 ms
51,968 KB
testcase_15 AC 44 ms
60,032 KB
testcase_16 AC 235 ms
92,288 KB
testcase_17 AC 36 ms
52,096 KB
testcase_18 AC 51 ms
64,768 KB
testcase_19 AC 33 ms
51,456 KB
testcase_20 AC 41 ms
60,160 KB
testcase_21 AC 35 ms
52,352 KB
testcase_22 AC 54 ms
65,536 KB
testcase_23 AC 35 ms
51,840 KB
testcase_24 AC 147 ms
84,264 KB
testcase_25 AC 150 ms
83,840 KB
testcase_26 AC 34 ms
51,840 KB
testcase_27 AC 55 ms
67,328 KB
testcase_28 AC 34 ms
51,840 KB
testcase_29 AC 52 ms
66,176 KB
testcase_30 AC 285 ms
92,032 KB
testcase_31 AC 51 ms
64,896 KB
testcase_32 AC 73 ms
73,472 KB
testcase_33 AC 152 ms
84,032 KB
testcase_34 AC 136 ms
84,160 KB
testcase_35 AC 305 ms
91,980 KB
testcase_36 AC 34 ms
52,352 KB
testcase_37 AC 80 ms
77,696 KB
testcase_38 AC 232 ms
92,160 KB
testcase_39 AC 61 ms
72,192 KB
testcase_40 AC 32 ms
52,352 KB
testcase_41 AC 57 ms
70,912 KB
testcase_42 AC 31 ms
51,584 KB
testcase_43 AC 68 ms
74,752 KB
testcase_44 AC 34 ms
51,968 KB
testcase_45 AC 34 ms
51,840 KB
testcase_46 AC 36 ms
51,968 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