結果

問題 No.385 カップ麺生活
ユーザー rlangevinrlangevin
提出日時 2023-07-17 13:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 66,676 KB
最終ジャッジ日時 2024-09-17 21:25:43
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,208 KB
testcase_01 AC 37 ms
59,552 KB
testcase_02 AC 40 ms
60,284 KB
testcase_03 AC 44 ms
62,120 KB
testcase_04 AC 46 ms
63,480 KB
testcase_05 AC 42 ms
60,792 KB
testcase_06 AC 49 ms
65,308 KB
testcase_07 AC 45 ms
64,752 KB
testcase_08 AC 48 ms
65,468 KB
testcase_09 AC 38 ms
59,320 KB
testcase_10 AC 52 ms
65,564 KB
testcase_11 AC 38 ms
60,424 KB
testcase_12 AC 48 ms
65,036 KB
testcase_13 AC 51 ms
65,728 KB
testcase_14 AC 49 ms
65,776 KB
testcase_15 AC 49 ms
65,960 KB
testcase_16 AC 43 ms
62,452 KB
testcase_17 AC 47 ms
66,092 KB
testcase_18 AC 52 ms
65,668 KB
testcase_19 AC 50 ms
64,784 KB
testcase_20 AC 49 ms
64,416 KB
testcase_21 AC 50 ms
65,652 KB
testcase_22 AC 51 ms
64,816 KB
testcase_23 AC 54 ms
65,584 KB
testcase_24 AC 49 ms
65,224 KB
testcase_25 AC 40 ms
62,164 KB
testcase_26 AC 40 ms
62,168 KB
testcase_27 AC 48 ms
66,676 KB
testcase_28 AC 49 ms
64,984 KB
testcase_29 AC 48 ms
65,080 KB
testcase_30 AC 51 ms
66,560 KB
testcase_31 AC 45 ms
62,388 KB
testcase_32 AC 48 ms
64,996 KB
testcase_33 AC 54 ms
65,588 KB
testcase_34 AC 51 ms
64,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


M = int(input())
N = int(input())
C = list(map(int, input().split()))

S = Sieve(10050)

inf = 10 ** 18
pre = [-inf] * (M + 1)
pre[0] = 0
for i in range(N):
    dp = [-inf] * (M + 1)
    for m in range(M + 1):
        dp[m] = pre[m]
        
    for m in range(M + 1):
        if m - C[i] >= 0:
            dp[m] = max(dp[m], dp[m - C[i]] + 1)
            
    dp, pre = pre, dp
    
ans = 0
for m in range(M + 1):
    if M - m in S and pre[m] > 0:
        ans += pre[m]
        
print(ans + M//min(C))
0