結果

問題 No.458 異なる素数の和
ユーザー h_nosonh_noson
提出日時 2017-01-26 13:30:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-07-05 05:57:14
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,136 KB
testcase_01 AC 121 ms
62,848 KB
testcase_02 AC 145 ms
62,976 KB
testcase_03 AC 73 ms
62,720 KB
testcase_04 AC 75 ms
63,104 KB
testcase_05 AC 249 ms
63,232 KB
testcase_06 AC 137 ms
62,976 KB
testcase_07 AC 51 ms
60,032 KB
testcase_08 AC 250 ms
63,232 KB
testcase_09 AC 68 ms
62,336 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 289 ms
63,360 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 64 ms
62,848 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 41 ms
51,584 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 43 ms
57,600 KB
testcase_21 AC 37 ms
51,712 KB
testcase_22 AC 39 ms
51,712 KB
testcase_23 AC 43 ms
57,728 KB
testcase_24 AC 43 ms
58,112 KB
testcase_25 AC 38 ms
52,224 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 129 ms
62,848 KB
testcase_28 AC 280 ms
63,360 KB
testcase_29 AC 57 ms
62,336 KB
testcase_30 AC 106 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(i*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)
dp = [-1] * (n+1)
dp[0] = 0
for i in range(len(p)):
    for j in range(n,p[i]-1,-1):
        if dp[j-p[i]] >= 0:
            dp[j] = max(dp[j],dp[j-p[i]]+1)
print(dp[n])
0