結果

問題 No.385 カップ麺生活
ユーザー tookunn_1213tookunn_1213
提出日時 2016-07-02 13:36:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 65,280 KB
最終ジャッジ日時 2024-10-04 22:37:16
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 34 ms
52,428 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 36 ms
57,600 KB
testcase_04 AC 46 ms
61,824 KB
testcase_05 AC 39 ms
58,368 KB
testcase_06 AC 50 ms
63,744 KB
testcase_07 AC 52 ms
64,256 KB
testcase_08 AC 45 ms
62,464 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 52 ms
63,872 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 48 ms
62,848 KB
testcase_13 AC 51 ms
64,128 KB
testcase_14 AC 52 ms
64,384 KB
testcase_15 AC 50 ms
64,008 KB
testcase_16 AC 38 ms
58,240 KB
testcase_17 AC 49 ms
64,640 KB
testcase_18 AC 45 ms
62,464 KB
testcase_19 AC 46 ms
63,360 KB
testcase_20 AC 48 ms
63,872 KB
testcase_21 AC 50 ms
65,280 KB
testcase_22 AC 50 ms
64,896 KB
testcase_23 AC 50 ms
64,640 KB
testcase_24 AC 49 ms
64,512 KB
testcase_25 AC 39 ms
57,632 KB
testcase_26 AC 49 ms
62,464 KB
testcase_27 AC 50 ms
64,000 KB
testcase_28 AC 52 ms
64,000 KB
testcase_29 AC 54 ms
63,744 KB
testcase_30 AC 54 ms
64,896 KB
testcase_31 AC 43 ms
60,032 KB
testcase_32 AC 46 ms
61,056 KB
testcase_33 AC 50 ms
64,256 KB
testcase_34 AC 47 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,N= int(input()),int(input())
C = sorted([int(i) for i in input().split()])
prime = [True for i in range(M + 1)]
prime[0] = prime[1] = False
dp = [-1 for i in range(M + 1)]
for i in range(2,M + 1):
	if prime[i]:
		j = 2
		while i * j <= M:
			prime[i * j] = False
			j+=1
dp[M] = 0
for i in range(N):
	for j in range(M,-1,-1):
		if dp[j] != -1 and j - C[i] >= 0:
			dp[j - C[i]] = max(dp[j - C[i]],dp[j] + 1)
ans = 0
for i in range(M + 1):
	if prime[i] and dp[i] >= 0:
		ans += dp[i]
ans += M // C[0]
print(ans)
0