結果

問題 No.247 線形計画問題もどき
ユーザー e-mone-mon
提出日時 2015-07-19 00:42:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 62,756 KB
最終ジャッジ日時 2024-07-07 11:06:03
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
62,224 KB
testcase_01 AC 40 ms
58,964 KB
testcase_02 AC 177 ms
62,756 KB
testcase_03 AC 36 ms
53,352 KB
testcase_04 AC 36 ms
52,824 KB
testcase_05 AC 36 ms
52,800 KB
testcase_06 AC 35 ms
52,268 KB
testcase_07 AC 43 ms
59,348 KB
testcase_08 AC 42 ms
59,836 KB
testcase_09 AC 36 ms
52,076 KB
testcase_10 AC 39 ms
60,140 KB
testcase_11 AC 35 ms
52,832 KB
testcase_12 AC 35 ms
53,760 KB
testcase_13 AC 37 ms
52,628 KB
testcase_14 AC 36 ms
52,640 KB
testcase_15 AC 35 ms
53,052 KB
testcase_16 AC 36 ms
52,624 KB
testcase_17 AC 58 ms
62,604 KB
testcase_18 AC 45 ms
61,860 KB
testcase_19 AC 77 ms
61,976 KB
testcase_20 AC 127 ms
61,924 KB
testcase_21 AC 43 ms
60,160 KB
testcase_22 AC 48 ms
61,120 KB
testcase_23 AC 44 ms
58,716 KB
testcase_24 AC 98 ms
62,396 KB
testcase_25 AC 85 ms
62,000 KB
testcase_26 AC 47 ms
60,484 KB
testcase_27 AC 44 ms
60,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-

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

dp = [-1 for i in range(C+1)]
dp[0] = 0

for i in range(N):
    for j in range(C+1):
        if dp[j] >= 0 and j + A[i] <= C:
            if dp[j + A[i]] != -1:
                dp[j + A[i]] = min(dp[j + A[i]], dp[j] + 1)
            else:
                dp[j + A[i]] = dp[j] + 1
print(dp[C])

0