結果

問題 No.385 カップ麺生活
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-13 20:24:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-25 21:20:54
合計ジャッジ時間 3,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
63,872 KB
testcase_01 AC 59 ms
64,256 KB
testcase_02 AC 56 ms
63,360 KB
testcase_03 AC 59 ms
63,488 KB
testcase_04 AC 64 ms
63,488 KB
testcase_05 AC 67 ms
63,872 KB
testcase_06 AC 67 ms
63,744 KB
testcase_07 AC 65 ms
64,896 KB
testcase_08 AC 69 ms
64,384 KB
testcase_09 AC 53 ms
61,184 KB
testcase_10 AC 69 ms
63,616 KB
testcase_11 AC 53 ms
61,696 KB
testcase_12 AC 78 ms
64,896 KB
testcase_13 AC 69 ms
64,640 KB
testcase_14 AC 63 ms
64,512 KB
testcase_15 AC 67 ms
65,152 KB
testcase_16 AC 65 ms
64,512 KB
testcase_17 AC 76 ms
65,152 KB
testcase_18 AC 72 ms
64,384 KB
testcase_19 AC 68 ms
64,768 KB
testcase_20 AC 73 ms
65,024 KB
testcase_21 AC 67 ms
64,768 KB
testcase_22 AC 69 ms
64,640 KB
testcase_23 AC 69 ms
65,280 KB
testcase_24 AC 64 ms
64,768 KB
testcase_25 AC 63 ms
64,536 KB
testcase_26 AC 58 ms
63,104 KB
testcase_27 AC 63 ms
65,280 KB
testcase_28 AC 65 ms
64,896 KB
testcase_29 AC 67 ms
65,280 KB
testcase_30 AC 68 ms
65,408 KB
testcase_31 AC 62 ms
64,896 KB
testcase_32 AC 63 ms
65,280 KB
testcase_33 AC 80 ms
65,408 KB
testcase_34 AC 63 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

maxN=100010
dp=[-100010]*maxN
dp[0]=0
N=int(input())
K=int(input())
A=list(map(int,input().split()))
list.sort(A)
for i in range(K):
    for j in range(maxN):
        if j+A[i]<maxN:
            dp[j+A[i]]=max(dp[j+A[i]],dp[j]+1)
prime=[1]*maxN
prime[0]=0
prime[1]=0
for i in range(2,maxN):
    if not i:
        continue
    j=i+i
    while j<maxN:
        prime[j]=0
        j+=i

ans=0
for i in range(N+1):
    if prime[i] and dp[N-i]>0:
        ans+=dp[N-i]
print(ans+N//A[0])
0