結果

問題 No.247 線形計画問題もどき
ユーザー Akisawa3Akisawa3
提出日時 2022-09-17 20:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,612 KB
実行使用メモリ 62,336 KB
最終ジャッジ日時 2024-06-01 15:18:06
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
60,288 KB
testcase_01 AC 44 ms
58,624 KB
testcase_02 AC 166 ms
60,672 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 51 ms
60,032 KB
testcase_08 AC 45 ms
59,088 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 44 ms
58,496 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 40 ms
51,584 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 40 ms
52,068 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 62 ms
61,824 KB
testcase_18 AC 47 ms
59,776 KB
testcase_19 AC 101 ms
60,288 KB
testcase_20 AC 120 ms
62,336 KB
testcase_21 AC 50 ms
59,008 KB
testcase_22 AC 56 ms
59,904 KB
testcase_23 AC 55 ms
61,056 KB
testcase_24 AC 120 ms
62,208 KB
testcase_25 AC 90 ms
62,080 KB
testcase_26 AC 58 ms
60,672 KB
testcase_27 AC 63 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in range(N):
    for j in range(C):
        if j+A[i] <= C:
            dp[j+A[i]] = min(dp[j+A[i]], dp[j]+1)

if dp[C] == 10**10:
    print(-1)
else:
    print(dp[C])
0