結果

問題 No.247 線形計画問題もどき
ユーザー ynyn
提出日時 2016-08-31 22:09:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 63,972 KB
最終ジャッジ日時 2024-07-07 11:41:55
合計ジャッジ時間 2,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
61,112 KB
testcase_01 AC 37 ms
58,400 KB
testcase_02 AC 146 ms
61,124 KB
testcase_03 AC 33 ms
52,228 KB
testcase_04 AC 31 ms
53,372 KB
testcase_05 AC 32 ms
52,084 KB
testcase_06 AC 33 ms
52,876 KB
testcase_07 AC 44 ms
61,780 KB
testcase_08 AC 39 ms
59,324 KB
testcase_09 AC 34 ms
52,140 KB
testcase_10 AC 34 ms
58,688 KB
testcase_11 AC 33 ms
52,412 KB
testcase_12 AC 33 ms
52,368 KB
testcase_13 AC 30 ms
52,412 KB
testcase_14 AC 31 ms
52,336 KB
testcase_15 AC 31 ms
52,556 KB
testcase_16 AC 31 ms
52,236 KB
testcase_17 AC 53 ms
63,124 KB
testcase_18 AC 39 ms
60,312 KB
testcase_19 AC 88 ms
62,024 KB
testcase_20 AC 112 ms
62,732 KB
testcase_21 AC 41 ms
60,988 KB
testcase_22 AC 45 ms
60,240 KB
testcase_23 AC 45 ms
61,684 KB
testcase_24 AC 105 ms
63,972 KB
testcase_25 AC 78 ms
62,484 KB
testcase_26 AC 49 ms
60,560 KB
testcase_27 AC 57 ms
62,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c = int(input())
n = int(input())
a = [0] + list(map(int,input().split()))

dp = [10 ** 10] * (c + 1)
dp[0] = 0

for i in range(1, n + 1):
    for j in range(c + 1):
        if j + a[i] <= c:
            dp[j + a[i]] = min(dp[j + a[i]], dp[j] + 1)

if dp[c] >= 10 ** 10:
    dp[c] = -1
print(dp[c])
0