結果

問題 No.458 異なる素数の和
ユーザー h_nosonh_noson
提出日時 2017-01-26 12:18:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-06-06 00:50:46
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
67,200 KB
testcase_01 AC 214 ms
72,960 KB
testcase_02 AC 250 ms
73,344 KB
testcase_03 AC 99 ms
72,960 KB
testcase_04 AC 109 ms
72,704 KB
testcase_05 AC 475 ms
73,472 KB
testcase_06 AC 243 ms
73,344 KB
testcase_07 AC 64 ms
68,992 KB
testcase_08 AC 475 ms
73,216 KB
testcase_09 AC 79 ms
72,320 KB
testcase_10 AC 42 ms
54,912 KB
testcase_11 AC 554 ms
73,728 KB
testcase_12 AC 43 ms
54,656 KB
testcase_13 AC 41 ms
54,528 KB
testcase_14 AC 40 ms
54,656 KB
testcase_15 AC 43 ms
54,656 KB
testcase_16 AC 87 ms
72,960 KB
testcase_17 AC 46 ms
60,928 KB
testcase_18 AC 45 ms
61,056 KB
testcase_19 AC 40 ms
55,040 KB
testcase_20 AC 49 ms
62,592 KB
testcase_21 AC 42 ms
54,912 KB
testcase_22 AC 40 ms
54,912 KB
testcase_23 AC 46 ms
61,824 KB
testcase_24 AC 46 ms
62,464 KB
testcase_25 AC 44 ms
55,424 KB
testcase_26 AC 44 ms
61,056 KB
testcase_27 AC 226 ms
73,216 KB
testcase_28 AC 548 ms
73,472 KB
testcase_29 AC 75 ms
72,704 KB
testcase_30 AC 161 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

def primes(n):
    is_p = [True for i in range(n+1)]
    i = 2
    while i * i <= n:
        if is_p[i]:
            for j in range(2*i,n+1,i):
                is_p[j] = False
        i += 1
    return [i for i in range(2,n+1) if is_p[i]]

n = int(input())
p = primes(n)
mp = {0:0}
dp = [[-1 for i in range(n+1)] for j in range(2)]
dp[0][0] = 0
ans = -1
for i in range(len(p)):
    for j in range(n+1):
        dp[(i+1)%2][j] = max(dp[i%2][j],dp[i%2][j-p[i]]+1 if j >= p[i] and dp[i%2][j-p[i]] >= 0 else -1)
    ans = max(ans,dp[(i+1)%2][n])
print(ans)
0