874. Maximal Prime Score

Let p(t) denote the (t+1)th prime number. So that p(0)=2, p(1)=3, etc.
We define the prime score of a list of nonnegative integers [a1,,an] as the sum i=1np(ai).
Let M(k,n) be the maximal prime score among all lists [a1,,an] such that:

For example, M(2,5)=14 as [0,1,1,1,1] attains a maximal prime score of 14.

Find M(7000,p(7000)).

874. 最大质数得分

p(t) 为第 (t+1) 个质数,所以 p(0)=2p(1)=3,以此类推。
对一列非负整数 [a1,,an],我们定义其 质数得分i=1np(ai)
M(k,n) 为满足如下条件的数列中,质数得分的最大值:

例如,M(2,5)=14,因为序列 [0,1,1,1,1] 的质数得分是 14

M(7000,p(7000))


这个链接 回到源站。

这个链接 回到详细版题目目录。