結果

問題 No.247 線形計画問題もどき
ユーザー ayaoniayaoni
提出日時 2020-11-26 15:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 68,020 KB
最終ジャッジ日時 2024-07-23 20:52:09
合計ジャッジ時間 3,320 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
64,216 KB
testcase_01 AC 44 ms
59,980 KB
testcase_02 AC 95 ms
65,652 KB
testcase_03 AC 36 ms
52,524 KB
testcase_04 AC 37 ms
53,240 KB
testcase_05 AC 36 ms
52,420 KB
testcase_06 AC 37 ms
53,408 KB
testcase_07 AC 51 ms
66,456 KB
testcase_08 AC 43 ms
60,256 KB
testcase_09 AC 36 ms
53,672 KB
testcase_10 AC 42 ms
60,100 KB
testcase_11 AC 36 ms
52,536 KB
testcase_12 AC 38 ms
52,340 KB
testcase_13 AC 36 ms
53,616 KB
testcase_14 AC 38 ms
52,244 KB
testcase_15 AC 38 ms
52,520 KB
testcase_16 AC 37 ms
52,548 KB
testcase_17 AC 59 ms
63,996 KB
testcase_18 AC 44 ms
61,572 KB
testcase_19 AC 78 ms
65,664 KB
testcase_20 AC 95 ms
68,020 KB
testcase_21 AC 48 ms
61,996 KB
testcase_22 AC 52 ms
62,560 KB
testcase_23 AC 50 ms
61,904 KB
testcase_24 AC 96 ms
67,488 KB
testcase_25 AC 80 ms
65,488 KB
testcase_26 AC 53 ms
64,276 KB
testcase_27 AC 56 ms
63,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


C,N = I(),I()
A = LI()
inf = 10**18

dp = [0]*(C+1)
# dp[i] = (sum(AjXj) == i 下での sum(Xj) の最小値)
for i in range(1,C+1):
    r = inf
    for j in range(N):
        a = A[j]
        if i >= a:
            r = min(r,1+dp[i-a])
    dp[i] = r

ans = dp[-1]
print(ans if ans != inf else -1)
0