結果

問題 No.458 異なる素数の和
ユーザー ireenaireena
提出日時 2022-01-22 15:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-05-05 14:40:22
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,776 KB
testcase_01 AC 105 ms
62,848 KB
testcase_02 AC 120 ms
63,488 KB
testcase_03 AC 60 ms
63,232 KB
testcase_04 AC 66 ms
62,976 KB
testcase_05 AC 208 ms
63,488 KB
testcase_06 AC 115 ms
63,104 KB
testcase_07 AC 42 ms
59,264 KB
testcase_08 AC 213 ms
63,232 KB
testcase_09 AC 51 ms
62,720 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 244 ms
63,232 KB
testcase_12 AC 35 ms
51,824 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 36 ms
52,608 KB
testcase_15 AC 36 ms
52,608 KB
testcase_16 AC 55 ms
62,592 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 40 ms
58,112 KB
testcase_21 AC 36 ms
52,096 KB
testcase_22 AC 36 ms
51,712 KB
testcase_23 AC 39 ms
58,028 KB
testcase_24 AC 41 ms
57,856 KB
testcase_25 AC 36 ms
52,352 KB
testcase_26 AC 36 ms
52,736 KB
testcase_27 AC 112 ms
63,104 KB
testcase_28 AC 236 ms
63,488 KB
testcase_29 AC 48 ms
62,336 KB
testcase_30 AC 89 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
INF = 1 << 30

def list_primes(limit):
    primes = []
    is_prime = [True] * (limit + 1)
    is_prime[0] = False
    is_prime[1] = False

    for p in range (0, limit + 1):
        if not is_prime[p]:
            continue
        primes.append(p)
        for i in range(p*p, limit + 1, p):
            is_prime[i] = False

    return primes

primes = list_primes(N)

dp = [-INF] * (N+1)
dp[0] = 0

for p in primes:
    for i in range(N+1)[::-1]:
        if i - p < 0:
            break
        dp[i] = max(dp[i], dp[i-p] + 1)

print(dp[-1] if dp[-1] > 0 else -1)
0