結果

問題 No.1267 Stop and Coin Game
ユーザー 👑 KazunKazun
提出日時 2020-10-23 22:50:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 92,876 KB
最終ジャッジ日時 2024-07-21 11:57:30
合計ジャッジ時間 6,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 48 ms
60,160 KB
testcase_06 AC 46 ms
59,776 KB
testcase_07 AC 40 ms
51,456 KB
testcase_08 AC 93 ms
76,160 KB
testcase_09 AC 45 ms
59,392 KB
testcase_10 AC 483 ms
92,544 KB
testcase_11 AC 125 ms
80,244 KB
testcase_12 AC 87 ms
76,672 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 47 ms
59,648 KB
testcase_16 AC 511 ms
92,876 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 57 ms
65,152 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 46 ms
59,904 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 53 ms
62,976 KB
testcase_23 AC 38 ms
51,712 KB
testcase_24 AC 170 ms
84,352 KB
testcase_25 AC 290 ms
84,864 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 51 ms
61,696 KB
testcase_28 AC 38 ms
51,712 KB
testcase_29 AC 48 ms
61,184 KB
testcase_30 AC 397 ms
92,160 KB
testcase_31 AC 66 ms
69,632 KB
testcase_32 AC 72 ms
67,456 KB
testcase_33 AC 152 ms
83,968 KB
testcase_34 AC 277 ms
84,736 KB
testcase_35 AC 377 ms
92,416 KB
testcase_36 AC 38 ms
51,968 KB
testcase_37 AC 121 ms
78,080 KB
testcase_38 AC 433 ms
92,032 KB
testcase_39 AC 102 ms
77,264 KB
testcase_40 AC 39 ms
51,840 KB
testcase_41 AC 98 ms
77,276 KB
testcase_42 AC 39 ms
51,712 KB
testcase_43 AC 83 ms
76,472 KB
testcase_44 AC 39 ms
52,480 KB
testcase_45 AC 39 ms
51,968 KB
testcase_46 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    if T[x]!=None:
        return T[x]

    for j in range(N):
        if x&(1<<j)==0 and S[x|(1<<j)]<=V:
            if not f(x|(1<<j)):
                T[x]=True
                return True

    T[x]=False
    return False

N,V=map(int,input().split())
A=list(map(int,input().split()))

if sum(A)<=V:
    print("Draw")
    exit()

S=[0]*(1<<N)
for b in range(1<<N):
    a=b
    x=0
    for k in range(N):
        if b&1:
            x+=A[k]
        b>>=1
    S[a]=x

T=[None]*(1<<N)

if f(0):
    print("First")
else:
    print("Second")
0