結果

問題 No.247 線形計画問題もどき
ユーザー titiatitia
提出日時 2022-08-17 04:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 64,464 KB
最終ジャッジ日時 2024-10-04 00:49:07
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
62,668 KB
testcase_01 AC 43 ms
60,628 KB
testcase_02 AC 75 ms
64,464 KB
testcase_03 AC 37 ms
51,908 KB
testcase_04 AC 36 ms
53,284 KB
testcase_05 AC 36 ms
52,964 KB
testcase_06 AC 37 ms
52,824 KB
testcase_07 AC 50 ms
63,628 KB
testcase_08 AC 42 ms
58,692 KB
testcase_09 AC 36 ms
52,492 KB
testcase_10 AC 40 ms
59,896 KB
testcase_11 AC 36 ms
52,828 KB
testcase_12 AC 37 ms
52,236 KB
testcase_13 AC 36 ms
53,084 KB
testcase_14 AC 37 ms
53,292 KB
testcase_15 AC 36 ms
52,316 KB
testcase_16 AC 37 ms
52,528 KB
testcase_17 AC 64 ms
61,908 KB
testcase_18 AC 46 ms
61,764 KB
testcase_19 AC 94 ms
63,776 KB
testcase_20 AC 103 ms
62,972 KB
testcase_21 AC 44 ms
59,568 KB
testcase_22 AC 47 ms
60,544 KB
testcase_23 AC 46 ms
61,092 KB
testcase_24 AC 102 ms
64,140 KB
testcase_25 AC 76 ms
63,876 KB
testcase_26 AC 54 ms
62,104 KB
testcase_27 AC 51 ms
61,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP=[1<<31]*(C+1)
DP[C]=0

for i in range(C,-1,-1):
    for a in A:
        if i>=a:
            DP[i-a]=min(DP[i-a],DP[i]+1)

if DP[0]==1<<31:
    print(-1)
else:
    print(DP[0])
0