結果

問題 No.1267 Stop and Coin Game
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-10-23 23:10:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 92,140 KB
最終ジャッジ日時 2024-07-21 12:30:43
合計ジャッジ時間 6,821 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,244 KB
testcase_01 AC 40 ms
52,556 KB
testcase_02 AC 39 ms
52,744 KB
testcase_03 AC 39 ms
53,484 KB
testcase_04 AC 41 ms
52,772 KB
testcase_05 AC 41 ms
52,516 KB
testcase_06 AC 39 ms
52,944 KB
testcase_07 AC 41 ms
53,916 KB
testcase_08 AC 70 ms
74,200 KB
testcase_09 AC 41 ms
52,276 KB
testcase_10 AC 265 ms
91,936 KB
testcase_11 AC 153 ms
79,680 KB
testcase_12 AC 80 ms
76,612 KB
testcase_13 AC 40 ms
52,200 KB
testcase_14 AC 41 ms
52,312 KB
testcase_15 AC 49 ms
62,220 KB
testcase_16 AC 504 ms
92,004 KB
testcase_17 AC 41 ms
52,336 KB
testcase_18 AC 66 ms
70,892 KB
testcase_19 AC 38 ms
52,940 KB
testcase_20 AC 40 ms
52,996 KB
testcase_21 AC 40 ms
52,752 KB
testcase_22 AC 61 ms
67,456 KB
testcase_23 AC 42 ms
52,424 KB
testcase_24 AC 92 ms
83,848 KB
testcase_25 AC 374 ms
83,756 KB
testcase_26 AC 38 ms
52,744 KB
testcase_27 AC 42 ms
54,324 KB
testcase_28 AC 41 ms
52,628 KB
testcase_29 AC 56 ms
66,188 KB
testcase_30 AC 80 ms
83,472 KB
testcase_31 AC 66 ms
71,740 KB
testcase_32 AC 42 ms
54,804 KB
testcase_33 AC 61 ms
70,404 KB
testcase_34 AC 290 ms
84,004 KB
testcase_35 AC 56 ms
69,256 KB
testcase_36 AC 40 ms
52,812 KB
testcase_37 AC 114 ms
77,848 KB
testcase_38 AC 617 ms
92,140 KB
testcase_39 AC 96 ms
76,868 KB
testcase_40 AC 41 ms
52,560 KB
testcase_41 AC 94 ms
77,064 KB
testcase_42 AC 39 ms
53,576 KB
testcase_43 AC 119 ms
77,844 KB
testcase_44 AC 43 ms
59,788 KB
testcase_45 AC 40 ms
53,224 KB
testcase_46 AC 39 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s, total):
    if total > V:
        dp[s] = 0
        return 0
    if dp[s] != -1:
        return dp[s]
    R = 0
    for i in range(N):
        if (1<<i) & s:
            continue
        c = f((1<<i)|s, total+X[i])
        R = R|c
    dp[s] = (not R)
    return not R


N, V = map(int, input().split())
X = list(map(int, input().split()))
dp = [-1]*(2**N)
if sum(X) <= V:
    print("Draw")
elif f(0, 0):
    print("Second")
else:
    print("First")
0