結果

問題 No.385 カップ麺生活
ユーザー 双六双六
提出日時 2020-07-29 02:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 72,972 KB
最終ジャッジ日時 2024-10-04 23:04:44
合計ジャッジ時間 2,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
63,296 KB
testcase_01 AC 43 ms
63,528 KB
testcase_02 AC 43 ms
64,648 KB
testcase_03 AC 46 ms
65,888 KB
testcase_04 AC 50 ms
67,812 KB
testcase_05 AC 47 ms
66,576 KB
testcase_06 AC 50 ms
68,036 KB
testcase_07 AC 56 ms
71,628 KB
testcase_08 AC 56 ms
68,828 KB
testcase_09 AC 44 ms
63,724 KB
testcase_10 AC 52 ms
71,476 KB
testcase_11 AC 44 ms
63,512 KB
testcase_12 AC 55 ms
69,724 KB
testcase_13 AC 54 ms
70,540 KB
testcase_14 AC 57 ms
72,436 KB
testcase_15 AC 58 ms
71,232 KB
testcase_16 AC 50 ms
66,304 KB
testcase_17 AC 55 ms
70,884 KB
testcase_18 AC 56 ms
71,396 KB
testcase_19 AC 56 ms
70,828 KB
testcase_20 AC 58 ms
70,368 KB
testcase_21 AC 58 ms
72,972 KB
testcase_22 AC 55 ms
70,984 KB
testcase_23 AC 56 ms
71,352 KB
testcase_24 AC 50 ms
68,592 KB
testcase_25 AC 48 ms
65,108 KB
testcase_26 AC 48 ms
66,732 KB
testcase_27 AC 55 ms
70,468 KB
testcase_28 AC 54 ms
71,324 KB
testcase_29 AC 55 ms
72,248 KB
testcase_30 AC 57 ms
71,136 KB
testcase_31 AC 45 ms
65,424 KB
testcase_32 AC 50 ms
68,524 KB
testcase_33 AC 56 ms
71,096 KB
testcase_34 AC 54 ms
68,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 10 ** 5 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#処理内容
def main():
	M = int(input())
	N = int(input())
	C = getlist()
	DP = [-INF] * (M + 1)
	DP[-1] = 0
	for i in range(M, -1, -1):
		for j in C:
			if i - j >= 0:
				DP[i - j] = max(DP[i - j], DP[i] + 1)

	ans = max(DP)
	# print(DP)
	for i in plist:
		if i <= M:
			if DP[i] != -INF:
				ans += DP[i]
		else:
			break

	print(ans)

if __name__ == '__main__':
	main()
0