結果

問題 No.247 線形計画問題もどき
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-07 22:09:17
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 77,084 KB
実行使用メモリ 78,224 KB
最終ジャッジ日時 2024-07-07 11:15:02
合計ジャッジ時間 3,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
77,460 KB
testcase_01 AC 63 ms
76,728 KB
testcase_02 AC 160 ms
78,224 KB
testcase_03 AC 62 ms
75,552 KB
testcase_04 AC 62 ms
75,560 KB
testcase_05 AC 64 ms
75,676 KB
testcase_06 AC 60 ms
75,656 KB
testcase_07 AC 65 ms
77,836 KB
testcase_08 AC 66 ms
77,584 KB
testcase_09 AC 61 ms
75,404 KB
testcase_10 AC 66 ms
77,460 KB
testcase_11 AC 65 ms
75,556 KB
testcase_12 AC 63 ms
75,304 KB
testcase_13 AC 64 ms
75,764 KB
testcase_14 AC 62 ms
75,276 KB
testcase_15 AC 63 ms
75,816 KB
testcase_16 AC 61 ms
75,416 KB
testcase_17 AC 67 ms
77,104 KB
testcase_18 AC 70 ms
77,692 KB
testcase_19 AC 74 ms
77,504 KB
testcase_20 AC 80 ms
77,704 KB
testcase_21 AC 67 ms
77,324 KB
testcase_22 AC 68 ms
76,980 KB
testcase_23 AC 64 ms
76,704 KB
testcase_24 AC 91 ms
77,836 KB
testcase_25 AC 85 ms
77,344 KB
testcase_26 AC 68 ms
77,840 KB
testcase_27 AC 67 ms
77,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C=int(raw_input())
N=int(raw_input())
A=map(int,raw_input().split())
A.sort()
A.reverse()
dp=[10000000 for i in range(C+1)]
dp[0]=0
for a in A:
    for j in range(a,C+1):
        if dp[j-a]>=0:
            dp[j]=min(dp[j],dp[j-a]+1)
if dp[C]==10000000:
    print -1
else:
    print dp[C]
0