結果

問題 No.1267 Stop and Coin Game
ユーザー ayaoniayaoni
提出日時 2020-10-24 00:31:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 92,484 KB
最終ジャッジ日時 2024-07-21 14:22:03
合計ジャッジ時間 6,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,236 KB
testcase_01 AC 39 ms
53,492 KB
testcase_02 AC 39 ms
53,668 KB
testcase_03 AC 39 ms
53,264 KB
testcase_04 AC 40 ms
53,264 KB
testcase_05 AC 47 ms
62,372 KB
testcase_06 AC 45 ms
61,380 KB
testcase_07 AC 39 ms
52,688 KB
testcase_08 AC 84 ms
72,852 KB
testcase_09 AC 44 ms
59,828 KB
testcase_10 AC 425 ms
92,484 KB
testcase_11 AC 122 ms
80,032 KB
testcase_12 AC 62 ms
68,936 KB
testcase_13 AC 39 ms
52,640 KB
testcase_14 AC 38 ms
52,476 KB
testcase_15 AC 49 ms
62,992 KB
testcase_16 AC 456 ms
92,372 KB
testcase_17 AC 38 ms
52,612 KB
testcase_18 AC 55 ms
64,648 KB
testcase_19 AC 39 ms
53,824 KB
testcase_20 AC 44 ms
61,404 KB
testcase_21 AC 38 ms
53,736 KB
testcase_22 AC 53 ms
64,596 KB
testcase_23 AC 38 ms
52,280 KB
testcase_24 AC 156 ms
84,076 KB
testcase_25 AC 214 ms
84,364 KB
testcase_26 AC 38 ms
53,560 KB
testcase_27 AC 50 ms
63,444 KB
testcase_28 AC 37 ms
53,452 KB
testcase_29 AC 52 ms
64,700 KB
testcase_30 AC 391 ms
92,340 KB
testcase_31 AC 55 ms
65,108 KB
testcase_32 AC 72 ms
68,732 KB
testcase_33 AC 151 ms
83,844 KB
testcase_34 AC 191 ms
84,148 KB
testcase_35 AC 385 ms
91,968 KB
testcase_36 AC 38 ms
52,440 KB
testcase_37 AC 97 ms
77,944 KB
testcase_38 AC 470 ms
92,404 KB
testcase_39 AC 83 ms
73,188 KB
testcase_40 AC 38 ms
52,684 KB
testcase_41 AC 84 ms
72,140 KB
testcase_42 AC 38 ms
52,528 KB
testcase_43 AC 96 ms
77,880 KB
testcase_44 AC 38 ms
52,348 KB
testcase_45 AC 38 ms
53,016 KB
testcase_46 AC 38 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N,V = MI()
A = LI()
s = sum(A)

if s <= V:
    print('Draw')
    exit()

volume = [0]*(2**N)  # iに対応する硬貨の体積の総和
for i in range(2**N):
    x = 0
    for j in range(N):
        if (i>>j) & 1:
            x += A[j]
    volume[i] = x

dp = [-1]*(2**N)  # dp[i] = iを未使用の硬貨の集合とするとき、先手必勝か否か
for i in range(2**N):
    if s-volume[i] > V:
        continue
    for j in range(N):
        if (i >> j) & 1:
            if dp[i ^ (1 << j)] == 0:
                dp[i] = 1
                break
    else:
        dp[i] = 0

print('First' if dp[-1] == 1 else 'Second')
0