結果

問題 No.385 カップ麺生活
ユーザー titiatitia
提出日時 2023-01-28 01:49:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-28 09:58:55
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
13,308 KB
testcase_01 AC 49 ms
13,312 KB
testcase_02 AC 53 ms
13,436 KB
testcase_03 AC 54 ms
13,436 KB
testcase_04 AC 53 ms
13,440 KB
testcase_05 AC 51 ms
13,312 KB
testcase_06 AC 79 ms
13,312 KB
testcase_07 AC 63 ms
13,436 KB
testcase_08 AC 57 ms
13,312 KB
testcase_09 AC 51 ms
13,436 KB
testcase_10 AC 208 ms
13,440 KB
testcase_11 AC 50 ms
13,440 KB
testcase_12 AC 68 ms
13,312 KB
testcase_13 AC 83 ms
13,436 KB
testcase_14 AC 84 ms
13,440 KB
testcase_15 AC 72 ms
13,440 KB
testcase_16 AC 51 ms
13,440 KB
testcase_17 AC 120 ms
13,312 KB
testcase_18 AC 60 ms
13,308 KB
testcase_19 AC 56 ms
13,436 KB
testcase_20 AC 86 ms
13,440 KB
testcase_21 AC 85 ms
13,440 KB
testcase_22 AC 91 ms
13,436 KB
testcase_23 AC 81 ms
13,312 KB
testcase_24 AC 90 ms
13,440 KB
testcase_25 AC 51 ms
13,436 KB
testcase_26 AC 52 ms
13,440 KB
testcase_27 AC 63 ms
13,436 KB
testcase_28 AC 61 ms
13,312 KB
testcase_29 AC 57 ms
13,436 KB
testcase_30 AC 76 ms
13,440 KB
testcase_31 AC 52 ms
13,312 KB
testcase_32 AC 51 ms
13,440 KB
testcase_33 AC 108 ms
13,312 KB
testcase_34 AC 51 ms
13,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=50000
import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]
SET=set(Primes)

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

ANS=0

DP=[0]*(M+1)
DP[0]=1
for c in C:
    for i in range(M+1):
        if DP[i]>0 and i+c<=M:
            DP[i+c]=max(DP[i+c],DP[i]+1)

for i in range(M+1):
    if M-i in SET and DP[i]>1:
        ANS+=DP[i]-1

ANS+=M//C[0]

print(ANS)
            

0