結果

問題 No.247 線形計画問題もどき
ユーザー 👑 rin204rin204
提出日時 2022-07-08 09:35:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 60,900 KB
最終ジャッジ日時 2024-06-07 22:05:41
合計ジャッジ時間 2,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,332 KB
testcase_01 AC 38 ms
58,984 KB
testcase_02 AC 93 ms
60,900 KB
testcase_03 AC 33 ms
51,816 KB
testcase_04 AC 32 ms
52,304 KB
testcase_05 AC 32 ms
52,692 KB
testcase_06 AC 32 ms
52,820 KB
testcase_07 AC 36 ms
58,636 KB
testcase_08 AC 37 ms
59,432 KB
testcase_09 AC 33 ms
52,092 KB
testcase_10 AC 33 ms
52,512 KB
testcase_11 AC 32 ms
52,168 KB
testcase_12 AC 31 ms
52,268 KB
testcase_13 AC 32 ms
51,904 KB
testcase_14 AC 32 ms
52,176 KB
testcase_15 AC 33 ms
52,084 KB
testcase_16 AC 31 ms
52,612 KB
testcase_17 AC 42 ms
60,396 KB
testcase_18 AC 40 ms
58,512 KB
testcase_19 AC 43 ms
60,016 KB
testcase_20 AC 55 ms
59,932 KB
testcase_21 AC 37 ms
58,500 KB
testcase_22 AC 40 ms
59,324 KB
testcase_23 AC 37 ms
59,292 KB
testcase_24 AC 57 ms
60,572 KB
testcase_25 AC 50 ms
60,836 KB
testcase_26 AC 37 ms
59,364 KB
testcase_27 AC 37 ms
59,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C = int(input())
n = int(input())
A = list(map(int, input().split()))
dp = [1 << 30] * (C + 1)
dp[0] = 0
for a in A:
    for i in range(a, C + 1):
        dp[i] = min(dp[i], dp[i - a] + 1)
ans = dp[-1]
if ans == 1 << 30:
    ans = -1
print(ans)
0