結果

問題 No.458 異なる素数の和
ユーザー rlangevinrlangevin
提出日時 2023-02-27 12:50:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 919 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 249,600 KB
最終ジャッジ日時 2024-09-14 21:01:51
合計ジャッジ時間 7,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,544 KB
testcase_01 AC 279 ms
76,800 KB
testcase_02 AC 345 ms
77,312 KB
testcase_03 AC 116 ms
75,904 KB
testcase_04 AC 131 ms
76,160 KB
testcase_05 AC 799 ms
249,600 KB
testcase_06 AC 326 ms
77,440 KB
testcase_07 AC 55 ms
61,568 KB
testcase_08 AC 801 ms
249,344 KB
testcase_09 AC 78 ms
70,144 KB
testcase_10 AC 41 ms
52,224 KB
testcase_11 AC 919 ms
249,344 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 94 ms
76,160 KB
testcase_17 AC 45 ms
58,240 KB
testcase_18 AC 46 ms
57,728 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 48 ms
58,880 KB
testcase_21 AC 42 ms
51,968 KB
testcase_22 AC 42 ms
52,352 KB
testcase_23 AC 48 ms
59,136 KB
testcase_24 AC 49 ms
59,392 KB
testcase_25 AC 46 ms
58,112 KB
testcase_26 AC 47 ms
58,240 KB
testcase_27 AC 315 ms
77,184 KB
testcase_28 AC 909 ms
249,472 KB
testcase_29 AC 68 ms
66,432 KB
testcase_30 AC 220 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil

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 sorted(list(S))

N = int(input())
P = Sieve(N + 100)
M = len(P)
inf = 10 ** 18
pre = [-inf] * (N + 1)
pre[0] = 0
for i in range(M):
    dp = [-inf] * (N + 1)
    for j in range(N + 1):
        dp[j] = pre[j]
        if j - P[i] < 0:
            continue
        dp[j] = max(dp[j], pre[j - P[i]] + 1)
    dp, pre = pre, dp

print(pre[-1]) if pre[-1] > 0 else print(-1)
0