結果

問題 No.1267 Stop and Coin Game
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-24 00:59:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 460 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,976 KB
最終ジャッジ日時 2024-07-21 14:36:39
合計ジャッジ時間 14,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 53 ms
11,776 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 1,254 ms
18,944 KB
testcase_11 AC 558 ms
12,800 KB
testcase_12 AC 128 ms
10,880 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 TLE -
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 35 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 35 ms
10,752 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 128 ms
14,592 KB
testcase_25 TLE -
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 52 ms
18,876 KB
testcase_31 AC 47 ms
10,752 KB
testcase_32 AC 31 ms
11,520 KB
testcase_33 AC 38 ms
14,720 KB
testcase_34 AC 1,671 ms
14,720 KB
testcase_35 AC 42 ms
18,816 KB
testcase_36 AC 28 ms
10,752 KB
testcase_37 AC 469 ms
11,776 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v = map(int, input().split())
a = list(map(int, input().split()))
if sum(a) <= v:
    exit(print("Draw"))
dp = [-1] * (1 << n)
def dfs(S, t):
    if t > v:
        dp[S] = 0
        return 0
    if dp[S] != -1:
        return dp[S]
    res = 0
    for i in range(n):
        if (1 << i) & S:
            continue
        res |= dfs((1 << i) | S, t + a[i])
    dp[S] = (not res)
    return (not res)
if dfs(0, 0):
    print("Second")
else:
    print("First")
0