結果

問題 No.247 線形計画問題もどき
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-22 00:18:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 60,632 KB
最終ジャッジ日時 2024-09-21 13:28:49
合計ジャッジ時間 2,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,016 KB
testcase_01 AC 40 ms
57,924 KB
testcase_02 AC 108 ms
60,172 KB
testcase_03 AC 35 ms
52,356 KB
testcase_04 AC 35 ms
51,952 KB
testcase_05 AC 35 ms
51,888 KB
testcase_06 AC 35 ms
52,876 KB
testcase_07 AC 39 ms
59,224 KB
testcase_08 AC 42 ms
58,384 KB
testcase_09 AC 37 ms
53,024 KB
testcase_10 AC 37 ms
52,824 KB
testcase_11 AC 35 ms
52,552 KB
testcase_12 AC 34 ms
52,816 KB
testcase_13 AC 35 ms
52,104 KB
testcase_14 AC 38 ms
51,776 KB
testcase_15 AC 35 ms
52,748 KB
testcase_16 AC 36 ms
53,316 KB
testcase_17 AC 46 ms
60,628 KB
testcase_18 AC 43 ms
59,176 KB
testcase_19 AC 51 ms
59,028 KB
testcase_20 AC 59 ms
60,164 KB
testcase_21 AC 41 ms
58,244 KB
testcase_22 AC 43 ms
58,328 KB
testcase_23 AC 43 ms
60,216 KB
testcase_24 AC 58 ms
60,632 KB
testcase_25 AC 53 ms
60,632 KB
testcase_26 AC 43 ms
59,204 KB
testcase_27 AC 44 ms
59,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 10**9
C = int(input())
N = int(input())
A = list(map(int, input().split()))

dp = [inf] * (C + 1)
dp[0] = 0
for a in A:
    for i in range(C - a + 1):
        dp[i + a] = min(dp[i + a], dp[i] + 1)

if dp[C] >= inf:
    print(-1)
else:
    print(dp[C])
0