結果

問題 No.1267 Stop and Coin Game
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-06 01:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 92,364 KB
最終ジャッジ日時 2024-06-10 14:38:48
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,964 KB
testcase_01 AC 36 ms
53,192 KB
testcase_02 AC 35 ms
52,084 KB
testcase_03 AC 37 ms
52,512 KB
testcase_04 AC 34 ms
52,520 KB
testcase_05 AC 47 ms
61,896 KB
testcase_06 AC 42 ms
60,312 KB
testcase_07 AC 34 ms
53,056 KB
testcase_08 AC 80 ms
76,132 KB
testcase_09 AC 42 ms
61,192 KB
testcase_10 AC 439 ms
92,220 KB
testcase_11 AC 141 ms
80,208 KB
testcase_12 AC 67 ms
70,152 KB
testcase_13 AC 37 ms
52,080 KB
testcase_14 AC 34 ms
53,016 KB
testcase_15 AC 45 ms
64,824 KB
testcase_16 AC 526 ms
92,336 KB
testcase_17 AC 33 ms
52,340 KB
testcase_18 AC 53 ms
65,252 KB
testcase_19 AC 37 ms
51,752 KB
testcase_20 AC 39 ms
59,984 KB
testcase_21 AC 32 ms
52,756 KB
testcase_22 AC 50 ms
65,752 KB
testcase_23 AC 36 ms
52,000 KB
testcase_24 AC 166 ms
84,096 KB
testcase_25 AC 261 ms
84,152 KB
testcase_26 AC 39 ms
60,848 KB
testcase_27 AC 47 ms
63,900 KB
testcase_28 AC 40 ms
61,004 KB
testcase_29 AC 46 ms
64,856 KB
testcase_30 AC 390 ms
92,152 KB
testcase_31 AC 53 ms
67,076 KB
testcase_32 AC 65 ms
70,684 KB
testcase_33 AC 148 ms
83,964 KB
testcase_34 AC 228 ms
84,188 KB
testcase_35 AC 370 ms
92,204 KB
testcase_36 AC 40 ms
61,932 KB
testcase_37 AC 97 ms
77,812 KB
testcase_38 AC 565 ms
92,364 KB
testcase_39 AC 79 ms
71,772 KB
testcase_40 AC 42 ms
61,660 KB
testcase_41 AC 82 ms
73,588 KB
testcase_42 AC 40 ms
60,336 KB
testcase_43 AC 107 ms
78,040 KB
testcase_44 AC 351 ms
92,072 KB
testcase_45 AC 32 ms
52,748 KB
testcase_46 AC 32 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v = map(int, input().split())
A = list(map(int, input().split()))
X = [0]*(1<<n)
for i in range(1<<n):
    s = 0
    for j in range(n):
        if (i>>j)& 1:
            s += A[j]
    X[i] = v-s
dp = [False]*(1<<n)
#print(X)
if X[-1] < 0:
    dp[-1] = True
else:
    print('Draw')
    exit()
for s in reversed(range(2**n-1)):
    if X[s] < 0:
        dp[s] = True
        continue
    v = True
    for j in range(n):
        if not ((s>>j) & 1):
            ns = s | (1<<j)
            v &= dp[ns]
    if v:
        dp[s] = False
    else:
        dp[s] = True
if dp[0]:
    print('First')
else:
    print('Second')
0