結果

問題 No.458 異なる素数の和
ユーザー soyamashsoyamash
提出日時 2023-12-15 23:55:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 65,728 KB
最終ジャッジ日時 2024-09-27 06:42:16
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,532 KB
testcase_01 AC 120 ms
64,080 KB
testcase_02 AC 145 ms
65,524 KB
testcase_03 AC 72 ms
65,492 KB
testcase_04 AC 73 ms
64,332 KB
testcase_05 AC 257 ms
65,728 KB
testcase_06 AC 139 ms
64,252 KB
testcase_07 AC 46 ms
60,144 KB
testcase_08 AC 257 ms
64,296 KB
testcase_09 AC 55 ms
63,156 KB
testcase_10 AC 37 ms
54,220 KB
testcase_11 AC 299 ms
65,604 KB
testcase_12 AC 37 ms
53,484 KB
testcase_13 AC 36 ms
52,532 KB
testcase_14 AC 37 ms
53,548 KB
testcase_15 AC 36 ms
52,948 KB
testcase_16 AC 60 ms
63,792 KB
testcase_17 AC 38 ms
52,580 KB
testcase_18 AC 38 ms
53,712 KB
testcase_19 AC 37 ms
52,832 KB
testcase_20 AC 42 ms
58,644 KB
testcase_21 AC 38 ms
52,592 KB
testcase_22 AC 37 ms
53,832 KB
testcase_23 AC 41 ms
58,220 KB
testcase_24 AC 42 ms
59,060 KB
testcase_25 AC 37 ms
53,820 KB
testcase_26 AC 38 ms
52,388 KB
testcase_27 AC 136 ms
65,088 KB
testcase_28 AC 293 ms
65,076 KB
testcase_29 AC 52 ms
63,272 KB
testcase_30 AC 104 ms
64,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/931
import math
N = int(input())


is_prime = [True for _ in range(N + 1)]
is_prime[0] = is_prime[1] = False
prime_list = []
for i in range(2, N + 1):
    if is_prime[i]:
        prime_list.append(i)
        for j in range(i * i, N + 1, i):
            is_prime[j] = False

dp = [-1 for _ in range(N + 1)]
dp[0] = 0
for i in prime_list:
    for j in range(N, i - 1, -1):
        if dp[j - i] != -1:
            dp[j] = max(dp[j - i] + 1, dp[j])

print(dp[N])
# print(dp)
0