結果

問題 No.458 異なる素数の和
ユーザー cshimegicshimegi
提出日時 2020-12-05 14:27:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 418 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 515,800 KB
最終ジャッジ日時 2024-09-15 17:32:06
合計ジャッジ時間 8,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
62,336 KB
testcase_01 AC 347 ms
178,560 KB
testcase_02 AC 430 ms
215,552 KB
testcase_03 AC 127 ms
92,928 KB
testcase_04 AC 150 ms
105,600 KB
testcase_05 AC 893 ms
455,040 KB
testcase_06 AC 430 ms
215,708 KB
testcase_07 AC 57 ms
62,592 KB
testcase_08 AC 885 ms
457,600 KB
testcase_09 AC 84 ms
80,484 KB
testcase_10 AC 39 ms
51,684 KB
testcase_11 MLE -
testcase_12 AC 41 ms
51,584 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 42 ms
52,352 KB
testcase_16 AC 98 ms
81,408 KB
testcase_17 AC 43 ms
57,820 KB
testcase_18 AC 43 ms
57,496 KB
testcase_19 AC 39 ms
51,584 KB
testcase_20 AC 49 ms
59,136 KB
testcase_21 AC 42 ms
51,712 KB
testcase_22 AC 42 ms
51,584 KB
testcase_23 AC 48 ms
58,496 KB
testcase_24 AC 49 ms
59,392 KB
testcase_25 AC 42 ms
52,352 KB
testcase_26 AC 46 ms
57,984 KB
testcase_27 AC 397 ms
203,264 KB
testcase_28 AC 988 ms
507,264 KB
testcase_29 AC 66 ms
69,768 KB
testcase_30 AC 268 ms
154,180 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

nn = range(n+1)
dp = [[0]+[-1]*n]
add_dp = dp.append
i = 0

for k in range(2, n+1):
    if s[k]:
        add_dp([0]+[-1]*n)
        for w in nn:
            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