結果

問題 No.1267 Stop and Coin Game
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-23 01:27:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 84,440 KB
最終ジャッジ日時 2024-09-28 06:33:51
合計ジャッジ時間 7,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,748 KB
testcase_01 AC 35 ms
52,572 KB
testcase_02 AC 36 ms
52,636 KB
testcase_03 AC 36 ms
52,944 KB
testcase_04 AC 37 ms
52,324 KB
testcase_05 AC 45 ms
63,812 KB
testcase_06 AC 41 ms
60,524 KB
testcase_07 AC 37 ms
52,496 KB
testcase_08 AC 94 ms
77,000 KB
testcase_09 AC 41 ms
59,540 KB
testcase_10 AC 525 ms
84,244 KB
testcase_11 AC 185 ms
77,820 KB
testcase_12 AC 90 ms
76,256 KB
testcase_13 AC 38 ms
53,740 KB
testcase_14 AC 37 ms
52,836 KB
testcase_15 AC 50 ms
62,520 KB
testcase_16 AC 699 ms
84,128 KB
testcase_17 AC 37 ms
52,552 KB
testcase_18 AC 62 ms
69,100 KB
testcase_19 AC 37 ms
53,344 KB
testcase_20 AC 43 ms
59,800 KB
testcase_21 AC 37 ms
51,936 KB
testcase_22 AC 61 ms
70,136 KB
testcase_23 AC 36 ms
52,636 KB
testcase_24 AC 182 ms
80,432 KB
testcase_25 AC 433 ms
79,892 KB
testcase_26 AC 37 ms
53,460 KB
testcase_27 AC 50 ms
64,156 KB
testcase_28 AC 35 ms
52,892 KB
testcase_29 AC 58 ms
68,364 KB
testcase_30 AC 408 ms
84,440 KB
testcase_31 AC 72 ms
74,264 KB
testcase_32 AC 73 ms
76,480 KB
testcase_33 AC 165 ms
79,544 KB
testcase_34 AC 352 ms
79,752 KB
testcase_35 AC 395 ms
83,716 KB
testcase_36 AC 36 ms
52,492 KB
testcase_37 AC 139 ms
76,740 KB
testcase_38 AC 777 ms
84,164 KB
testcase_39 AC 104 ms
76,340 KB
testcase_40 AC 37 ms
52,744 KB
testcase_41 AC 111 ms
76,492 KB
testcase_42 AC 36 ms
53,320 KB
testcase_43 AC 136 ms
76,764 KB
testcase_44 AC 37 ms
53,444 KB
testcase_45 AC 38 ms
53,572 KB
testcase_46 AC 38 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1267


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

    if V - sum(A) >= 0:
        print("Draw")
        return

    grandies = [-1] * (1 << N)
    for bit in range(1 << N):
        b = ((1 << N) - 1) & (~bit)


        v = 0
        for i in range(N):
            if b & (1 << i):
                v += A[i]

        if V - v < 0:
            continue
        else:
            rest_v = V - v
            grandy_set = set()
            for i in range(N):
                if bit & (1 << i):
                    if rest_v - A[i] < 0:
                        continue

                    bit_ = bit - (1 << i)
                    grandy_set.add(grandies[bit_])
            for i in range(N + 2):
                if i not in grandy_set:
                    grandies[bit] = i
                    break

    if grandies[(1 << N) - 1] == 0:
        print("Second")
    else:
        print("First")











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