結果

問題 No.1267 Stop and Coin Game
ユーザー 👑 rin204rin204
提出日時 2022-07-10 15:13:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 609 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-11 03:06:21
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 48 ms
60,928 KB
testcase_06 AC 41 ms
59,904 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 82 ms
71,680 KB
testcase_09 AC 43 ms
59,136 KB
testcase_10 AC 458 ms
84,352 KB
testcase_11 AC 118 ms
77,568 KB
testcase_12 AC 63 ms
67,328 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 35 ms
51,968 KB
testcase_15 AC 47 ms
61,312 KB
testcase_16 AC 453 ms
83,968 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 54 ms
64,512 KB
testcase_19 AC 34 ms
51,840 KB
testcase_20 AC 41 ms
59,904 KB
testcase_21 AC 34 ms
51,712 KB
testcase_22 AC 54 ms
64,768 KB
testcase_23 AC 39 ms
51,840 KB
testcase_24 AC 179 ms
80,000 KB
testcase_25 AC 214 ms
79,872 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 53 ms
62,336 KB
testcase_28 AC 36 ms
51,712 KB
testcase_29 AC 55 ms
64,000 KB
testcase_30 AC 403 ms
84,224 KB
testcase_31 AC 55 ms
64,768 KB
testcase_32 AC 67 ms
67,328 KB
testcase_33 AC 152 ms
79,872 KB
testcase_34 AC 194 ms
79,872 KB
testcase_35 AC 376 ms
83,840 KB
testcase_36 AC 39 ms
51,584 KB
testcase_37 AC 98 ms
76,800 KB
testcase_38 AC 437 ms
83,840 KB
testcase_39 AC 81 ms
71,040 KB
testcase_40 AC 41 ms
51,968 KB
testcase_41 AC 84 ms
71,040 KB
testcase_42 AC 39 ms
51,712 KB
testcase_43 AC 94 ms
76,928 KB
testcase_44 AC 35 ms
51,840 KB
testcase_45 WA -
testcase_46 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v = map(int, input().split())
A = list(map(int, input().split()))
if sum(A) < v:
    print("Draw")
    exit()
win = [False] * (1 << n)
for bit in range(1 << n):
    tot = 0
    for i in range(n):
        if bit >> i & 1:
            tot += A[i]
    if tot > v:
        win[bit] = True
for bit in range((1 << n) - 1, -1, -1):
    if win[bit]:
        continue
    win[bit] = False
    for i in range(n):
        if not bit >> i & 1:
            nbit = bit | (1 << i)
            if not win[nbit]:
                win[bit] = True
                break

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