結果

問題 No.1267 Stop and Coin Game
ユーザー tobusakanatobusakana
提出日時 2022-10-23 16:51:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 84,512 KB
最終ジャッジ日時 2024-07-02 08:20:01
合計ジャッジ時間 6,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,748 KB
testcase_01 AC 42 ms
51,956 KB
testcase_02 AC 38 ms
52,560 KB
testcase_03 AC 38 ms
52,564 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 50 ms
62,616 KB
testcase_06 AC 46 ms
61,236 KB
testcase_07 AC 38 ms
52,020 KB
testcase_08 AC 83 ms
73,712 KB
testcase_09 AC 44 ms
60,368 KB
testcase_10 AC 318 ms
83,788 KB
testcase_11 AC 132 ms
77,956 KB
testcase_12 AC 62 ms
68,636 KB
testcase_13 AC 37 ms
53,560 KB
testcase_14 AC 37 ms
52,148 KB
testcase_15 AC 47 ms
61,120 KB
testcase_16 AC 348 ms
84,060 KB
testcase_17 AC 38 ms
52,848 KB
testcase_18 AC 53 ms
64,356 KB
testcase_19 AC 37 ms
52,488 KB
testcase_20 AC 43 ms
60,412 KB
testcase_21 AC 39 ms
53,132 KB
testcase_22 AC 56 ms
66,656 KB
testcase_23 AC 38 ms
52,272 KB
testcase_24 AC 179 ms
79,812 KB
testcase_25 AC 225 ms
80,128 KB
testcase_26 AC 38 ms
53,500 KB
testcase_27 AC 55 ms
65,536 KB
testcase_28 AC 38 ms
52,288 KB
testcase_29 AC 57 ms
66,224 KB
testcase_30 AC 333 ms
84,512 KB
testcase_31 AC 56 ms
64,508 KB
testcase_32 AC 71 ms
67,860 KB
testcase_33 AC 169 ms
80,032 KB
testcase_34 AC 216 ms
79,764 KB
testcase_35 AC 315 ms
84,080 KB
testcase_36 AC 38 ms
52,868 KB
testcase_37 AC 97 ms
76,868 KB
testcase_38 AC 352 ms
84,072 KB
testcase_39 AC 75 ms
71,488 KB
testcase_40 AC 38 ms
52,072 KB
testcase_41 AC 79 ms
69,712 KB
testcase_42 AC 37 ms
52,236 KB
testcase_43 AC 95 ms
76,660 KB
testcase_44 AC 39 ms
52,448 KB
testcase_45 AC 38 ms
53,556 KB
testcase_46 AC 40 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Aの合計がV以下であればDraw
# N枚の硬貨のうちどれを使っているかの状態をSとし、
# 負の状態で回ってきたら勝ち
# 正の状態のとき、負けに遷移できるなら勝ち、できないなら負け

import sys
readline = sys.stdin.readline

N,V = map(int,readline().split())
A = list(map(int,readline().split()))
if sum(A) <= V:
  print("Draw")
  exit(0)
  
dp = [False] * (1 << N)
for status in range((1 << N) - 1, -1, -1):
  amt = 0
  for i in range(N):
    if (status >> i) & 1:
      amt += A[i]
  if V - amt < 0: # 勝ちの状態
    dp[status] = True
    continue
  # この状態からコインを新規で選んで負けの状態に遷移できるか
  for target in range(N):
    if (status >> target) & 1:
      continue
    if not dp[status | (1 << target)]:
      dp[status] = True
      break

if dp[0]:
  print("First")
else:
  print("Second")
0