結果

問題 No.458 異なる素数の和
ユーザー ireenaireena
提出日時 2022-01-22 15:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-11-27 12:44:56
合計ジャッジ時間 3,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,136 KB
testcase_01 AC 106 ms
62,848 KB
testcase_02 AC 120 ms
62,592 KB
testcase_03 AC 63 ms
62,464 KB
testcase_04 AC 67 ms
62,336 KB
testcase_05 AC 205 ms
63,104 KB
testcase_06 AC 117 ms
62,592 KB
testcase_07 AC 45 ms
58,880 KB
testcase_08 AC 202 ms
62,976 KB
testcase_09 AC 56 ms
61,696 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 237 ms
62,848 KB
testcase_12 AC 36 ms
51,456 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 36 ms
51,584 KB
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 56 ms
62,336 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 36 ms
51,712 KB
testcase_19 AC 37 ms
51,456 KB
testcase_20 AC 40 ms
57,856 KB
testcase_21 AC 36 ms
51,456 KB
testcase_22 AC 35 ms
51,712 KB
testcase_23 AC 42 ms
57,600 KB
testcase_24 AC 43 ms
57,472 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 AC 37 ms
51,840 KB
testcase_27 AC 112 ms
62,592 KB
testcase_28 AC 227 ms
62,848 KB
testcase_29 AC 51 ms
61,568 KB
testcase_30 AC 89 ms
62,592 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