結果

問題 No.247 線形計画問題もどき
ユーザー tjaketjake
提出日時 2015-12-20 16:05:40
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,748 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-09-17 12:16:11
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 1,748 ms
9,472 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 48 ms
7,040 KB
testcase_08 AC 38 ms
9,600 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 11 ms
7,168 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 9 ms
6,944 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 88 ms
6,944 KB
testcase_18 AC 35 ms
6,940 KB
testcase_19 AC 361 ms
6,944 KB
testcase_20 AC 623 ms
7,040 KB
testcase_21 AC 12 ms
6,944 KB
testcase_22 AC 41 ms
6,944 KB
testcase_23 AC 15 ms
6,940 KB
testcase_24 AC 681 ms
7,040 KB
testcase_25 AC 417 ms
6,940 KB
testcase_26 AC 78 ms
6,940 KB
testcase_27 AC 78 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c = input()
n = input()
a = map(int, raw_input().split())
dp = [c+1]*(c+1)
dp[0] = 0
ans = c+1
for e in a:
    for j in xrange(e, c+1):
        v=dp[j-e]+1
        if v<dp[j]:dp[j]=v
    if dp[c]<ans:ans=dp[c]
print-(ans>c)or ans
0