結果

問題 No.1267 Stop and Coin Game
ユーザー 👑 rin204rin204
提出日時 2022-07-10 15:02:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 84,336 KB
最終ジャッジ日時 2024-06-11 02:10:37
合計ジャッジ時間 7,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,424 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 42 ms
52,280 KB
testcase_03 WA -
testcase_04 AC 42 ms
52,708 KB
testcase_05 AC 56 ms
64,660 KB
testcase_06 AC 51 ms
61,884 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 557 ms
84,336 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
53,492 KB
testcase_14 AC 39 ms
52,328 KB
testcase_15 AC 48 ms
62,736 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 41 ms
54,224 KB
testcase_20 WA -
testcase_21 AC 40 ms
52,300 KB
testcase_22 WA -
testcase_23 AC 38 ms
52,436 KB
testcase_24 AC 228 ms
79,960 KB
testcase_25 WA -
testcase_26 AC 39 ms
52,836 KB
testcase_27 AC 63 ms
67,344 KB
testcase_28 AC 39 ms
52,612 KB
testcase_29 AC 56 ms
65,300 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 230 ms
79,908 KB
testcase_34 AC 227 ms
79,916 KB
testcase_35 WA -
testcase_36 AC 42 ms
52,520 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 38 ms
52,616 KB
testcase_41 WA -
testcase_42 AC 39 ms
51,940 KB
testcase_43 WA -
testcase_44 AC 40 ms
52,680 KB
testcase_45 WA -
testcase_46 AC 38 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v = map(int, input().split())
A = list(map(int, input().split()))
if sum(A) < v:
    print("Draw")
    exit()
win = [True] * (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[i] = False
for bit in range((1 << n) - 1, -1, -1):
    if not 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