結果

問題 No.1267 Stop and Coin Game
ユーザー sotanishysotanishy
提出日時 2020-10-23 22:59:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,035 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 85,736 KB
最終ジャッジ日時 2024-07-21 12:08:35
合計ジャッジ時間 11,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,740 KB
testcase_01 AC 37 ms
53,352 KB
testcase_02 AC 35 ms
53,120 KB
testcase_03 AC 37 ms
53,548 KB
testcase_04 AC 38 ms
53,868 KB
testcase_05 AC 85 ms
76,340 KB
testcase_06 AC 48 ms
62,764 KB
testcase_07 AC 37 ms
53,088 KB
testcase_08 AC 229 ms
77,888 KB
testcase_09 AC 43 ms
59,464 KB
testcase_10 AC 809 ms
85,492 KB
testcase_11 AC 365 ms
79,456 KB
testcase_12 AC 184 ms
77,688 KB
testcase_13 AC 38 ms
52,628 KB
testcase_14 AC 37 ms
52,468 KB
testcase_15 AC 52 ms
63,908 KB
testcase_16 AC 896 ms
85,732 KB
testcase_17 AC 37 ms
52,712 KB
testcase_18 AC 111 ms
76,732 KB
testcase_19 AC 35 ms
52,936 KB
testcase_20 AC 48 ms
62,664 KB
testcase_21 AC 37 ms
52,472 KB
testcase_22 AC 114 ms
76,972 KB
testcase_23 AC 36 ms
53,008 KB
testcase_24 AC 436 ms
81,744 KB
testcase_25 AC 614 ms
81,564 KB
testcase_26 AC 37 ms
52,688 KB
testcase_27 AC 102 ms
76,792 KB
testcase_28 AC 36 ms
52,484 KB
testcase_29 AC 95 ms
76,624 KB
testcase_30 AC 654 ms
85,236 KB
testcase_31 AC 141 ms
77,240 KB
testcase_32 AC 174 ms
77,316 KB
testcase_33 AC 336 ms
80,988 KB
testcase_34 AC 528 ms
81,720 KB
testcase_35 AC 630 ms
84,808 KB
testcase_36 AC 36 ms
52,264 KB
testcase_37 AC 271 ms
78,076 KB
testcase_38 AC 1,035 ms
85,736 KB
testcase_39 AC 220 ms
78,108 KB
testcase_40 AC 36 ms
53,460 KB
testcase_41 AC 200 ms
78,460 KB
testcase_42 AC 37 ms
53,028 KB
testcase_43 AC 287 ms
78,460 KB
testcase_44 AC 36 ms
52,748 KB
testcase_45 AC 36 ms
52,676 KB
testcase_46 AC 37 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, V = map(int, input().split())
A = list(map(int, input().split()))
if sum(A) <= V:
    print('Draw')
    exit()
dp = [False] * (1 << N)
for S in range(1 << N)[::-1]:
    s = sum(A[i] for i in range(N) if S >> i & 1)
    if s > V:
        dp[S] = True
    else:
        dp[S] = any(not dp[S | 1 << i] for i in range(N) if not (S >> i & 1))
print('First' if dp[0] else 'Second')

0