結果

問題 No.247 線形計画問題もどき
ユーザー TawaraTawara
提出日時 2015-07-19 00:07:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 984 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 12,612 KB
最終ジャッジ日時 2024-07-07 11:05:30
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
8,448 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 100 ms
12,484 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 110 ms
10,240 KB
testcase_08 AC 92 ms
12,612 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 56 ms
10,368 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 10 ms
6,944 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 149 ms
7,936 KB
testcase_18 AC 44 ms
6,940 KB
testcase_19 AC 543 ms
9,088 KB
testcase_20 AC 918 ms
9,600 KB
testcase_21 AC 19 ms
6,944 KB
testcase_22 AC 68 ms
6,940 KB
testcase_23 AC 29 ms
6,940 KB
testcase_24 AC 984 ms
10,240 KB
testcase_25 AC 617 ms
8,960 KB
testcase_26 AC 136 ms
8,448 KB
testcase_27 AC 130 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C = int(raw_input())
N = int(raw_input())
a = sorted(list(set(map(int,raw_input().split(" ")))))
M = len(a)
UB = 10**5+1
dp = [UB for i in range(C+1)]
dp[0] = 0
for i in range(1,C+1):
	for j in range(M):
		if a[j] > i: 
			break
		if dp[i-a[j]] + 1 < dp[i]: 
			dp[i] = dp[i-a[j]] + 1
			
print -1 if dp[C] == UB else dp[C]
0