結果

問題 No.1267 Stop and Coin Game
ユーザー tamatotamato
提出日時 2020-10-23 22:19:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-07-21 10:58:24
合計ジャッジ時間 8,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 50 ms
62,976 KB
testcase_06 AC 49 ms
60,160 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 100 ms
77,416 KB
testcase_09 AC 44 ms
59,520 KB
testcase_10 AC 530 ms
84,736 KB
testcase_11 AC 195 ms
78,336 KB
testcase_12 AC 91 ms
76,576 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 52 ms
63,744 KB
testcase_16 AC 732 ms
84,480 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 64 ms
69,248 KB
testcase_19 AC 39 ms
52,480 KB
testcase_20 AC 45 ms
60,160 KB
testcase_21 AC 39 ms
51,712 KB
testcase_22 AC 64 ms
70,016 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 175 ms
80,640 KB
testcase_25 AC 469 ms
80,328 KB
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 51 ms
63,104 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 61 ms
66,432 KB
testcase_30 AC 397 ms
84,480 KB
testcase_31 AC 75 ms
76,160 KB
testcase_32 AC 74 ms
76,800 KB
testcase_33 AC 155 ms
79,744 KB
testcase_34 AC 366 ms
80,384 KB
testcase_35 AC 377 ms
83,840 KB
testcase_36 AC 38 ms
52,480 KB
testcase_37 AC 145 ms
76,928 KB
testcase_38 AC 799 ms
84,352 KB
testcase_39 AC 119 ms
76,672 KB
testcase_40 AC 39 ms
51,968 KB
testcase_41 AC 121 ms
77,116 KB
testcase_42 AC 40 ms
51,968 KB
testcase_43 AC 143 ms
77,184 KB
testcase_44 AC 39 ms
52,224 KB
testcase_45 AC 38 ms
52,096 KB
testcase_46 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    def mex(L):
        L = set(L)
        for i in range(21):
            if i not in L:
                return i

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

    if V >= sum(A):
        print("Draw")
        exit()

    g = [0] * (1 << N)
    for i in range((1 << N) - 1, -1, -1):
        s = 0
        for j in range(N):
            if i >> j & 1:
                s += A[j]
        if s < V:
            L = []
            for j in range(N):
                if i >> j & 1 == 0:
                    if s + A[j] <= V:
                        L.append(g[i | (1 << j)])
            g[i] = mex(L)
    if g[0]:
        print("First")
    else:
        print("Second")


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