結果

問題 No.458 異なる素数の和
ユーザー nanaenanae
提出日時 2017-03-18 02:57:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-07-05 06:01:48
合計ジャッジ時間 3,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,240 KB
testcase_01 AC 93 ms
62,080 KB
testcase_02 AC 108 ms
62,208 KB
testcase_03 AC 57 ms
61,824 KB
testcase_04 AC 59 ms
62,208 KB
testcase_05 AC 178 ms
62,336 KB
testcase_06 AC 105 ms
62,592 KB
testcase_07 AC 41 ms
59,008 KB
testcase_08 AC 177 ms
62,592 KB
testcase_09 AC 47 ms
60,928 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 204 ms
62,848 KB
testcase_12 AC 33 ms
51,968 KB
testcase_13 AC 32 ms
51,712 KB
testcase_14 AC 34 ms
51,712 KB
testcase_15 AC 34 ms
52,096 KB
testcase_16 AC 50 ms
61,824 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 AC 34 ms
52,224 KB
testcase_19 AC 32 ms
51,968 KB
testcase_20 AC 35 ms
57,472 KB
testcase_21 AC 33 ms
51,968 KB
testcase_22 AC 32 ms
51,840 KB
testcase_23 AC 36 ms
57,216 KB
testcase_24 AC 35 ms
57,344 KB
testcase_25 AC 32 ms
51,968 KB
testcase_26 AC 33 ms
51,840 KB
testcase_27 AC 96 ms
62,080 KB
testcase_28 AC 201 ms
62,720 KB
testcase_29 AC 46 ms
60,672 KB
testcase_30 AC 77 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout, stderr

def solve():
    N = int(input())
    ps = make_primes(N + 1)

    minf = -(len(ps) + 1)
    dp = [minf] * (N + 1)
    dp[0] = 0

    for p in ps:
        for i in range(N, p - 1, -1):
            dp[i] = max(dp[i], dp[i - p] + 1)

    # print(dp)
    ans = dp[N]

    if ans > 0:
        print(ans)
    else:
        print(-1)


def make_primes(N):
    sieve = [True] * N
    sieve[0] = sieve[1] = False

    for p in range(2, N):
        if not sieve[p]:
            continue

        for m in range(p**2, N, p):
            sieve[m] = False

    return [i for i in range(N) if sieve[i]]

if __name__ == '__main__':
    solve()
0