結果

問題 No.458 異なる素数の和
ユーザー cshimegicshimegi
提出日時 2020-12-05 14:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 421,944 KB
最終ジャッジ日時 2024-09-15 17:35:59
合計ジャッジ時間 7,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,788 KB
testcase_01 AC 305 ms
154,612 KB
testcase_02 AC 384 ms
200,140 KB
testcase_03 AC 107 ms
85,940 KB
testcase_04 AC 118 ms
85,716 KB
testcase_05 AC 748 ms
361,264 KB
testcase_06 AC 354 ms
177,164 KB
testcase_07 AC 48 ms
61,952 KB
testcase_08 AC 763 ms
363,884 KB
testcase_09 AC 65 ms
71,856 KB
testcase_10 AC 37 ms
52,452 KB
testcase_11 AC 898 ms
421,944 KB
testcase_12 AC 38 ms
52,392 KB
testcase_13 AC 37 ms
52,888 KB
testcase_14 AC 37 ms
53,228 KB
testcase_15 AC 38 ms
52,280 KB
testcase_16 AC 91 ms
86,272 KB
testcase_17 AC 42 ms
59,704 KB
testcase_18 AC 42 ms
58,332 KB
testcase_19 AC 37 ms
51,992 KB
testcase_20 AC 44 ms
60,660 KB
testcase_21 AC 37 ms
52,956 KB
testcase_22 AC 37 ms
52,676 KB
testcase_23 AC 44 ms
60,184 KB
testcase_24 AC 44 ms
60,144 KB
testcase_25 AC 39 ms
53,084 KB
testcase_26 AC 42 ms
59,216 KB
testcase_27 AC 339 ms
177,228 KB
testcase_28 AC 860 ms
412,652 KB
testcase_29 AC 59 ms
66,756 KB
testcase_30 AC 235 ms
131,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = [1]*(n+1)
p = 2
while p*p <= n:
    if s[p]:
        for i in range(p*2, n+1, p):
            s[i] = 0
    p += 1

_ = range(n+1)
__ = [0]+[-1]*n
dp = [__*1]
add = dp.append
i = 0

for k in range(2, n+1):
    if s[k]:
        add(__*1)
        for w in _:
            dp[i][w] = max(1+dp[i-1][w-k], dp[i-1][w]) if k <= w and dp[i-1][w-k] != -1 else dp[i-1][w]
        i += 1

print(dp[i-1][n])
0