結果

問題 No.385 カップ麺生活
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-23 02:51:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 823 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-11 00:01:23
合計ジャッジ時間 8,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,904 KB
testcase_01 AC 43 ms
59,520 KB
testcase_02 AC 43 ms
59,136 KB
testcase_03 AC 52 ms
61,184 KB
testcase_04 AC 112 ms
76,108 KB
testcase_05 AC 49 ms
61,568 KB
testcase_06 AC 140 ms
76,628 KB
testcase_07 AC 138 ms
76,432 KB
testcase_08 AC 91 ms
76,340 KB
testcase_09 AC 42 ms
58,240 KB
testcase_10 AC 823 ms
76,856 KB
testcase_11 AC 43 ms
58,580 KB
testcase_12 AC 121 ms
76,392 KB
testcase_13 AC 278 ms
76,800 KB
testcase_14 AC 492 ms
77,056 KB
testcase_15 AC 244 ms
76,416 KB
testcase_16 AC 53 ms
64,000 KB
testcase_17 AC 509 ms
76,648 KB
testcase_18 AC 99 ms
76,080 KB
testcase_19 AC 94 ms
76,492 KB
testcase_20 AC 223 ms
76,396 KB
testcase_21 AC 472 ms
76,672 KB
testcase_22 AC 265 ms
76,416 KB
testcase_23 AC 477 ms
77,056 KB
testcase_24 AC 343 ms
76,652 KB
testcase_25 AC 53 ms
64,128 KB
testcase_26 AC 79 ms
76,416 KB
testcase_27 AC 195 ms
76,544 KB
testcase_28 AC 173 ms
76,672 KB
testcase_29 AC 110 ms
76,784 KB
testcase_30 AC 382 ms
76,672 KB
testcase_31 AC 49 ms
62,336 KB
testcase_32 AC 68 ms
73,736 KB
testcase_33 AC 377 ms
76,644 KB
testcase_34 AC 84 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sieve(n):
    ass = []
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, int(math.sqrt(n))+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    for i in range(n+1):
        if is_prime[i]:
            ass.append(i)
    return ass

m = int(input())
n = int(input())
C = list(map(int, input().split()))

P = sieve(10**4+1)
ans = 0
for p in P:
    if p < m:
        dp = [-1]*(m-p+1)
        dp[0] = 0
        for i in range(m-p+1):
            if dp[i] != -1:
                for c in C:
                    if i+c <= m-p:
                        dp[i+c] = max(dp[i+c], dp[i]+1)
        if dp[-1] != -1:
            ans += dp[-1]
    else:
        break

dp = [-1]*(m+1)
dp[0] = 0
for i in range(m+1):
    if dp[i] != -1:
        for c in C:
            if i+c <= m:
                dp[i+c] = max(dp[i+c], dp[i]+1)
ans += max(dp)
print(ans)
0