結果

問題 No.1267 Stop and Coin Game
ユーザー mlihua09mlihua09
提出日時 2020-10-23 22:49:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,267 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-07-21 11:52:33
合計ジャッジ時間 12,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 43 ms
57,088 KB
testcase_05 AC 73 ms
75,908 KB
testcase_06 AC 51 ms
61,696 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 193 ms
77,312 KB
testcase_09 AC 44 ms
58,880 KB
testcase_10 AC 1,127 ms
84,480 KB
testcase_11 AC 355 ms
78,464 KB
testcase_12 AC 119 ms
76,744 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 51 ms
61,952 KB
testcase_16 AC 1,257 ms
84,224 KB
testcase_17 AC 41 ms
52,352 KB
testcase_18 AC 86 ms
76,288 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 52 ms
61,952 KB
testcase_21 AC 40 ms
51,968 KB
testcase_22 AC 88 ms
75,904 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 545 ms
80,112 KB
testcase_25 AC 705 ms
80,256 KB
testcase_26 AC 39 ms
51,712 KB
testcase_27 AC 92 ms
76,032 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 78 ms
76,268 KB
testcase_30 AC 972 ms
84,608 KB
testcase_31 AC 90 ms
76,392 KB
testcase_32 AC 171 ms
76,928 KB
testcase_33 AC 519 ms
80,256 KB
testcase_34 AC 657 ms
80,256 KB
testcase_35 AC 962 ms
84,096 KB
testcase_36 AC 40 ms
51,840 KB
testcase_37 AC 218 ms
77,056 KB
testcase_38 AC 1,267 ms
84,488 KB
testcase_39 AC 147 ms
77,056 KB
testcase_40 AC 39 ms
51,584 KB
testcase_41 AC 148 ms
76,544 KB
testcase_42 AC 39 ms
51,840 KB
testcase_43 AC 211 ms
77,716 KB
testcase_44 AC 38 ms
51,968 KB
testcase_45 AC 38 ms
52,352 KB
testcase_46 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

a = sum(A)

if a <= V:
    print('Draw')
    exit()
    
DP = [0] * 2 ** N

from itertools import combinations

for i in range(0, N + 1):
    
    for Iter in combinations(range(N), r=i):
        
        x = sum([A[j] for j in Iter] + [0])
        
        y = sum([2 ** j for j in Iter] + [0])
        
        if a - x > V:
            
            DP[y] = 1
            
        else:
            
            if any(DP[y - 2 ** j] == 0 for j in Iter):
                
                DP[y] = 1
                
if DP[-1]:
    
    print('First')
    
else:
    
    print('Second')
0