結果

問題 No.385 カップ麺生活
ユーザー lloyzlloyz
提出日時 2023-01-31 00:16:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 66,472 KB
最終ジャッジ日時 2024-06-30 07:59:02
合計ジャッジ時間 3,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,156 KB
testcase_01 AC 43 ms
60,896 KB
testcase_02 AC 42 ms
60,508 KB
testcase_03 AC 44 ms
61,256 KB
testcase_04 AC 51 ms
64,600 KB
testcase_05 AC 45 ms
61,408 KB
testcase_06 AC 54 ms
65,904 KB
testcase_07 AC 54 ms
66,068 KB
testcase_08 AC 51 ms
65,300 KB
testcase_09 AC 44 ms
60,784 KB
testcase_10 AC 52 ms
64,104 KB
testcase_11 AC 44 ms
61,564 KB
testcase_12 AC 49 ms
63,984 KB
testcase_13 AC 53 ms
65,528 KB
testcase_14 AC 53 ms
65,688 KB
testcase_15 AC 53 ms
65,128 KB
testcase_16 AC 45 ms
61,176 KB
testcase_17 AC 54 ms
66,004 KB
testcase_18 AC 52 ms
64,472 KB
testcase_19 AC 52 ms
64,720 KB
testcase_20 AC 52 ms
64,496 KB
testcase_21 AC 53 ms
65,608 KB
testcase_22 AC 53 ms
66,472 KB
testcase_23 AC 54 ms
64,704 KB
testcase_24 AC 53 ms
65,092 KB
testcase_25 AC 46 ms
61,336 KB
testcase_26 AC 48 ms
63,356 KB
testcase_27 AC 54 ms
65,260 KB
testcase_28 AC 51 ms
64,720 KB
testcase_29 AC 52 ms
65,584 KB
testcase_30 AC 53 ms
65,788 KB
testcase_31 AC 48 ms
63,220 KB
testcase_32 AC 47 ms
62,780 KB
testcase_33 AC 53 ms
65,400 KB
testcase_34 AC 49 ms
63,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

IsPrime = [True for _ in range(10**4 + 1)]
IsPrime[0] = IsPrime[1] = False
for i in range(2, 10**4 + 1):
    if IsPrime[i]:
        for j in range(i * i, 10**4 + 1, i):
            IsPrime[j] = False

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

DP = [-1 for _ in range(c + 1)]
DP[c] = 0
for i in range(n):
    a = C[i]
    for j in range(c, -1, -1):
        if DP[j] != -1 and j - a >= 0:
            DP[j - a] = max(DP[j - a], DP[j] + 1)
ans = max(DP)
for i in range(c + 1):
    if IsPrime[i] and DP[i] != -1:
        ans += DP[i]
print(ans)
0