結果

問題 No.1267 Stop and Coin Game
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-10-23 23:08:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 84,360 KB
最終ジャッジ日時 2024-07-21 12:27:53
合計ジャッジ時間 5,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,500 KB
testcase_01 AC 37 ms
52,884 KB
testcase_02 AC 37 ms
52,500 KB
testcase_03 AC 37 ms
52,080 KB
testcase_04 AC 39 ms
52,748 KB
testcase_05 AC 36 ms
52,864 KB
testcase_06 AC 36 ms
52,412 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
53,100 KB
testcase_10 WA -
testcase_11 AC 129 ms
78,052 KB
testcase_12 WA -
testcase_13 AC 36 ms
53,744 KB
testcase_14 AC 36 ms
52,004 KB
testcase_15 AC 45 ms
60,920 KB
testcase_16 AC 393 ms
84,360 KB
testcase_17 AC 37 ms
53,364 KB
testcase_18 AC 60 ms
70,332 KB
testcase_19 AC 37 ms
52,312 KB
testcase_20 AC 37 ms
52,308 KB
testcase_21 AC 39 ms
53,520 KB
testcase_22 AC 56 ms
68,644 KB
testcase_23 AC 37 ms
52,964 KB
testcase_24 AC 72 ms
79,904 KB
testcase_25 WA -
testcase_26 AC 37 ms
53,128 KB
testcase_27 AC 39 ms
53,836 KB
testcase_28 AC 37 ms
52,688 KB
testcase_29 AC 53 ms
65,656 KB
testcase_30 AC 60 ms
75,012 KB
testcase_31 WA -
testcase_32 AC 38 ms
53,488 KB
testcase_33 AC 52 ms
66,656 KB
testcase_34 AC 240 ms
79,960 KB
testcase_35 AC 41 ms
61,428 KB
testcase_36 AC 38 ms
52,268 KB
testcase_37 WA -
testcase_38 AC 518 ms
84,192 KB
testcase_39 AC 87 ms
76,656 KB
testcase_40 AC 38 ms
52,920 KB
testcase_41 AC 84 ms
76,712 KB
testcase_42 AC 37 ms
52,936 KB
testcase_43 WA -
testcase_44 AC 41 ms
60,356 KB
testcase_45 AC 37 ms
53,612 KB
testcase_46 AC 36 ms
53,156 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] = 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