結果

問題 No.458 異なる素数の和
ユーザー ああああ
提出日時 2023-01-16 11:03:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,127 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 417,092 KB
最終ジャッジ日時 2024-06-09 18:07:44
合計ジャッジ時間 9,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,824 KB
testcase_01 AC 384 ms
177,024 KB
testcase_02 AC 465 ms
205,292 KB
testcase_03 AC 124 ms
90,860 KB
testcase_04 AC 135 ms
90,888 KB
testcase_05 AC 974 ms
357,476 KB
testcase_06 AC 519 ms
200,392 KB
testcase_07 AC 46 ms
63,216 KB
testcase_08 AC 955 ms
359,288 KB
testcase_09 AC 65 ms
72,140 KB
testcase_10 AC 32 ms
53,372 KB
testcase_11 AC 1,127 ms
417,092 KB
testcase_12 AC 33 ms
52,636 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 33 ms
52,608 KB
testcase_15 AC 34 ms
52,352 KB
testcase_16 AC 99 ms
88,704 KB
testcase_17 AC 44 ms
58,880 KB
testcase_18 AC 40 ms
58,624 KB
testcase_19 AC 34 ms
52,096 KB
testcase_20 AC 44 ms
59,760 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 37 ms
52,480 KB
testcase_23 AC 46 ms
59,648 KB
testcase_24 AC 47 ms
60,160 KB
testcase_25 AC 34 ms
52,864 KB
testcase_26 AC 38 ms
58,496 KB
testcase_27 AC 421 ms
182,808 KB
testcase_28 AC 1,091 ms
409,624 KB
testcase_29 AC 58 ms
68,440 KB
testcase_30 AC 284 ms
137,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

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=[[-10**10]*(N+1) for _ in range(len(primes)+1)]
dp[0][0]=0
for i in range(1,len(primes)+1):
    for j in range(N+1):
        dp[i][j]=max(dp[i][j],dp[i-1][j])
        if j-primes[i-1]>=0:
            dp[i][j]=max(dp[i][j],dp[i-1][j-primes[i-1]]+1)

if dp[len(primes)][N]<0:
    print(-1)
else:
    print(dp[len(primes)][N])
0