結果

問題 No.1267 Stop and Coin Game
ユーザー chineristACchineristAC
提出日時 2020-10-24 01:53:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 108,748 KB
最終ジャッジ日時 2024-07-21 14:46:55
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,192 KB
testcase_01 AC 37 ms
52,524 KB
testcase_02 AC 37 ms
52,668 KB
testcase_03 AC 38 ms
53,168 KB
testcase_04 AC 39 ms
53,448 KB
testcase_05 AC 47 ms
60,960 KB
testcase_06 AC 45 ms
60,560 KB
testcase_07 AC 38 ms
53,100 KB
testcase_08 AC 94 ms
77,320 KB
testcase_09 AC 43 ms
61,144 KB
testcase_10 AC 583 ms
108,532 KB
testcase_11 AC 179 ms
84,192 KB
testcase_12 AC 76 ms
70,584 KB
testcase_13 AC 38 ms
51,812 KB
testcase_14 AC 38 ms
53,548 KB
testcase_15 AC 50 ms
63,180 KB
testcase_16 AC 722 ms
108,608 KB
testcase_17 AC 37 ms
53,856 KB
testcase_18 AC 57 ms
65,872 KB
testcase_19 AC 38 ms
52,968 KB
testcase_20 AC 44 ms
60,640 KB
testcase_21 AC 38 ms
53,088 KB
testcase_22 AC 58 ms
67,268 KB
testcase_23 AC 37 ms
52,972 KB
testcase_24 AC 194 ms
92,348 KB
testcase_25 AC 414 ms
92,400 KB
testcase_26 AC 37 ms
52,836 KB
testcase_27 AC 53 ms
64,460 KB
testcase_28 AC 37 ms
53,168 KB
testcase_29 AC 57 ms
65,852 KB
testcase_30 AC 444 ms
108,256 KB
testcase_31 AC 61 ms
66,660 KB
testcase_32 AC 77 ms
70,924 KB
testcase_33 AC 180 ms
91,856 KB
testcase_34 AC 344 ms
92,424 KB
testcase_35 AC 434 ms
108,216 KB
testcase_36 AC 39 ms
52,864 KB
testcase_37 AC 141 ms
79,996 KB
testcase_38 AC 806 ms
108,748 KB
testcase_39 AC 102 ms
73,536 KB
testcase_40 AC 38 ms
52,196 KB
testcase_41 AC 102 ms
74,624 KB
testcase_42 AC 38 ms
52,620 KB
testcase_43 AC 146 ms
80,200 KB
testcase_44 AC 38 ms
53,152 KB
testcase_45 AC 39 ms
53,892 KB
testcase_46 AC 37 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if s<=V:
    print("Draw")
    exit()

dp_f = [0 for i in range(2**N)]
dp_s = [0 for i in range(2**N)]

for i in range(2**N):
    tmp = V - s
    for j in range(N):
        if i>>j &1:
            tmp += A[j]
    if tmp<0:
        dp_f[i] = "First"
        dp_s[i] = "Second"
    else:
        for j in range(N):
            if i>>j & 1:
                if dp_s[i-2**j]=="First":
                    dp_f[i] = "First"
                if dp_f[i-2**j]=="Second":
                    dp_s[i] = "Second"
        if not dp_f[i]:
            dp_f[i] = "Second"
        if not dp_s[i]:
            dp_s[i] = "First"

print(dp_f[-1])
0