結果

問題 No.1267 Stop and Coin Game
ユーザー nagissnagiss
提出日時 2020-10-23 22:50:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-07-21 11:56:42
合計ジャッジ時間 5,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

N, V = map(int, input().split())
A = list(map(int, input().split()))
Win = [False] * (1<<N)
if sum(A) <= V:
    print("Draw")
    exit()
for s in range((1<<N)-1, -1, -1):
    v = 0
    for idx_A, a in enumerate(A):
        if s>>idx_A&1:
            v += a
    if v > V:
        Win[s] = win = True
    else:
        win = Win[s]
    if not win:
        for idx_A in range(N):
            if s>>idx_A&1:
                Win[s^1<<idx_A] = True
print("First" if win else "Second")
0