結果

問題 No.1267 Stop and Coin Game
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-10-23 22:28:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,141 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 125,536 KB
最終ジャッジ日時 2024-07-21 11:15:10
合計ジャッジ時間 10,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 54 ms
62,592 KB
testcase_06 AC 51 ms
61,440 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 122 ms
85,888 KB
testcase_09 AC 49 ms
60,800 KB
testcase_10 AC 1,052 ms
125,120 KB
testcase_11 AC 220 ms
97,536 KB
testcase_12 AC 76 ms
73,600 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 38 ms
51,584 KB
testcase_15 AC 53 ms
63,360 KB
testcase_16 AC 1,137 ms
125,120 KB
testcase_17 AC 42 ms
52,608 KB
testcase_18 AC 63 ms
66,560 KB
testcase_19 AC 39 ms
52,000 KB
testcase_20 AC 50 ms
61,312 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 63 ms
66,560 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 333 ms
109,452 KB
testcase_25 AC 411 ms
109,952 KB
testcase_26 AC 39 ms
51,456 KB
testcase_27 AC 64 ms
67,968 KB
testcase_28 AC 39 ms
51,328 KB
testcase_29 AC 59 ms
64,896 KB
testcase_30 AC 1,016 ms
125,536 KB
testcase_31 AC 62 ms
66,944 KB
testcase_32 AC 109 ms
86,272 KB
testcase_33 AC 321 ms
109,952 KB
testcase_34 AC 384 ms
109,568 KB
testcase_35 AC 984 ms
125,312 KB
testcase_36 AC 39 ms
51,968 KB
testcase_37 AC 132 ms
85,504 KB
testcase_38 AC 1,141 ms
125,016 KB
testcase_39 AC 108 ms
80,256 KB
testcase_40 AC 38 ms
51,584 KB
testcase_41 AC 111 ms
80,472 KB
testcase_42 AC 38 ms
51,840 KB
testcase_43 AC 132 ms
86,400 KB
testcase_44 AC 37 ms
52,096 KB
testcase_45 AC 38 ms
51,968 KB
testcase_46 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ゲームdfs?
2^20

1を勝ち、0を負けとする
1つでも0があったら勝ち

"""

from sys import stdin
import sys
N,V = map(int,stdin.readline().split())
A = list(map(int,stdin.readline().split()))

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

ans = [-1] * (2**N)
ans[0] = None
np = [0]
qi = 0

while qi < len(np):
    for j in range(N):
        nex = np[qi] | (1<<j)
        if ans[nex] == -1:
            ans[nex] = None
            np.append(nex)
    qi += 1

np.reverse()


for i in np:

    s = 0
    for j in range(N):
        if (1<<j)&i > 0:
            s += A[j]
    if s > V:
        ans[i] = 1
    else:
        for j in range(N):
            if (1<<j)&i == 0 and ans[(1<<j)|i] == 0:
                ans[i] = 1
                break
        else:
            ans[i] = 0

if ans[0] == 0:
    print ("Second")
else:
    print ("First")
                
0