結果

問題 No.1267 Stop and Coin Game
ユーザー tcltktcltk
提出日時 2021-05-18 15:09:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,573 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-10-08 15:17:01
合計ジャッジ時間 18,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
86,272 KB
testcase_01 AC 132 ms
86,912 KB
testcase_02 AC 135 ms
86,912 KB
testcase_03 AC 130 ms
86,528 KB
testcase_04 AC 133 ms
86,272 KB
testcase_05 AC 186 ms
89,932 KB
testcase_06 AC 147 ms
88,660 KB
testcase_07 AC 129 ms
86,528 KB
testcase_08 AC 306 ms
91,392 KB
testcase_09 AC 131 ms
86,896 KB
testcase_10 AC 1,305 ms
98,176 KB
testcase_11 AC 512 ms
91,776 KB
testcase_12 AC 259 ms
90,240 KB
testcase_13 AC 130 ms
86,912 KB
testcase_14 AC 128 ms
86,528 KB
testcase_15 AC 152 ms
89,088 KB
testcase_16 AC 1,422 ms
98,560 KB
testcase_17 AC 132 ms
86,832 KB
testcase_18 AC 211 ms
89,856 KB
testcase_19 AC 133 ms
86,528 KB
testcase_20 AC 152 ms
88,704 KB
testcase_21 AC 128 ms
86,656 KB
testcase_22 AC 210 ms
89,856 KB
testcase_23 AC 134 ms
86,828 KB
testcase_24 AC 585 ms
94,976 KB
testcase_25 AC 807 ms
94,592 KB
testcase_26 AC 129 ms
86,656 KB
testcase_27 AC 194 ms
89,856 KB
testcase_28 AC 129 ms
86,656 KB
testcase_29 AC 188 ms
89,600 KB
testcase_30 AC 1,180 ms
97,664 KB
testcase_31 AC 242 ms
91,008 KB
testcase_32 AC 270 ms
90,496 KB
testcase_33 AC 535 ms
93,952 KB
testcase_34 AC 708 ms
94,720 KB
testcase_35 AC 1,127 ms
97,536 KB
testcase_36 AC 129 ms
86,528 KB
testcase_37 AC 439 ms
91,392 KB
testcase_38 AC 1,573 ms
98,560 KB
testcase_39 AC 288 ms
89,856 KB
testcase_40 AC 131 ms
86,272 KB
testcase_41 AC 303 ms
90,984 KB
testcase_42 AC 129 ms
86,272 KB
testcase_43 AC 354 ms
91,220 KB
testcase_44 AC 130 ms
87,004 KB
testcase_45 AC 130 ms
86,272 KB
testcase_46 AC 128 ms
86,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3 5
# 5 1 1
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N, V = map(int, input().split())
    A = list(map(int, input().split()))

    if sum(A) <= V:
        print('Draw')
        return

    dp = [None] * (1<<N)
    for s in range(1<<N):
        cap = sum(A[i] for i in range(N) if s & (1<<i))
        dp[s] = (cap <= V)

    for s in reversed(range(1<<N)):
        if dp[s]:
            # 自分が何を選んでも、次に相手は勝つ。ということは、自分は負け
            if any(dp[s | (1<<j)] for j in range(N) if s & (1<<j) == 0):
                dp[s] = False

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

if __name__ == '__main__':
    main()
0