結果

問題 No.247 線形計画問題もどき
ユーザー NoneNone
提出日時 2021-04-29 02:42:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 61,712 KB
最終ジャッジ日時 2024-07-08 01:44:48
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,708 KB
testcase_01 AC 36 ms
57,924 KB
testcase_02 AC 73 ms
58,964 KB
testcase_03 AC 34 ms
52,820 KB
testcase_04 AC 33 ms
53,212 KB
testcase_05 AC 33 ms
52,576 KB
testcase_06 AC 34 ms
52,408 KB
testcase_07 AC 38 ms
59,260 KB
testcase_08 AC 39 ms
59,832 KB
testcase_09 AC 34 ms
52,188 KB
testcase_10 AC 34 ms
53,928 KB
testcase_11 AC 34 ms
52,492 KB
testcase_12 AC 35 ms
52,932 KB
testcase_13 AC 35 ms
52,144 KB
testcase_14 AC 35 ms
52,480 KB
testcase_15 AC 34 ms
52,488 KB
testcase_16 AC 34 ms
52,692 KB
testcase_17 AC 42 ms
61,064 KB
testcase_18 AC 39 ms
59,060 KB
testcase_19 AC 47 ms
60,228 KB
testcase_20 AC 69 ms
60,508 KB
testcase_21 AC 37 ms
57,796 KB
testcase_22 AC 38 ms
59,572 KB
testcase_23 AC 37 ms
57,856 KB
testcase_24 AC 60 ms
61,712 KB
testcase_25 AC 54 ms
60,664 KB
testcase_26 AC 38 ms
59,412 KB
testcase_27 AC 38 ms
59,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C=int(input())
N=int(input())
INF=10**18
dp=[INF]*(C+1)
dp[0]=0
A=list(map(int, input().split()))
for i,a in enumerate(A):
    for w in range(C+1-a):
        if dp[w]!=INF or w==0:
            dp[w+a]=min(dp[w]+1,dp[w+a])

if dp[-1]==INF:
    print(-1)
else:
    print(dp[-1])
0