結果

問題 No.1267 Stop and Coin Game
ユーザー H3PO4H3PO4
提出日時 2022-02-05 14:19:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,928 KB
最終ジャッジ日時 2024-06-11 13:30:08
合計ジャッジ時間 10,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 123 ms
76,544 KB
testcase_06 AC 50 ms
62,592 KB
testcase_07 AC 34 ms
51,712 KB
testcase_08 AC 217 ms
77,824 KB
testcase_09 AC 41 ms
58,624 KB
testcase_10 AC 781 ms
85,928 KB
testcase_11 AC 280 ms
78,836 KB
testcase_12 AC 141 ms
76,768 KB
testcase_13 AC 34 ms
51,712 KB
testcase_14 AC 33 ms
51,968 KB
testcase_15 AC 52 ms
63,744 KB
testcase_16 AC 768 ms
85,192 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 92 ms
76,416 KB
testcase_19 AC 34 ms
51,712 KB
testcase_20 AC 50 ms
61,952 KB
testcase_21 AC 35 ms
51,840 KB
testcase_22 AC 90 ms
76,288 KB
testcase_23 AC 35 ms
51,840 KB
testcase_24 AC 402 ms
81,080 KB
testcase_25 AC 497 ms
81,536 KB
testcase_26 AC 40 ms
51,840 KB
testcase_27 AC 130 ms
77,444 KB
testcase_28 AC 37 ms
51,456 KB
testcase_29 AC 82 ms
76,160 KB
testcase_30 AC 872 ms
85,048 KB
testcase_31 AC 107 ms
76,308 KB
testcase_32 AC 182 ms
77,056 KB
testcase_33 AC 416 ms
81,084 KB
testcase_34 AC 507 ms
81,728 KB
testcase_35 AC 671 ms
85,928 KB
testcase_36 AC 36 ms
51,584 KB
testcase_37 AC 214 ms
78,036 KB
testcase_38 AC 923 ms
84,416 KB
testcase_39 AC 137 ms
76,928 KB
testcase_40 AC 35 ms
52,096 KB
testcase_41 AC 171 ms
77,184 KB
testcase_42 AC 34 ms
51,584 KB
testcase_43 AC 188 ms
77,312 KB
testcase_44 AC 35 ms
51,840 KB
testcase_45 AC 34 ms
51,840 KB
testcase_46 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

dp = [False] * (1 << N)
for b in range(1 << N):
    s = sum(a for i, a in enumerate(A) if not (b >> i) & 1)
    if V < s:
        dp[b] = True
        continue
    for i in range(N):
        if (b >> i) & 1:
            if not dp[b - (1 << i)]:
                dp[b] = True
                break
print("First" if dp[-1] else "Second")
0