結果

問題 No.458 異なる素数の和
ユーザー NoaSaberNoaSaber
提出日時 2021-04-17 15:23:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,412 KB
最終ジャッジ日時 2024-07-03 23:01:03
合計ジャッジ時間 5,420 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,672 KB
testcase_01 AC 220 ms
76,160 KB
testcase_02 AC 247 ms
76,260 KB
testcase_03 AC 95 ms
76,032 KB
testcase_04 AC 106 ms
76,248 KB
testcase_05 AC 480 ms
76,208 KB
testcase_06 AC 244 ms
76,356 KB
testcase_07 AC 51 ms
63,488 KB
testcase_08 AC 474 ms
76,412 KB
testcase_09 AC 69 ms
76,160 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 540 ms
76,288 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 79 ms
76,032 KB
testcase_17 AC 42 ms
58,496 KB
testcase_18 AC 42 ms
58,252 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 AC 43 ms
59,136 KB
testcase_21 AC 37 ms
52,352 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 44 ms
59,008 KB
testcase_24 AC 43 ms
59,520 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 42 ms
58,364 KB
testcase_27 AC 228 ms
76,080 KB
testcase_28 AC 553 ms
76,032 KB
testcase_29 AC 66 ms
70,400 KB
testcase_30 AC 168 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N==1:
    print(-1)
    exit()
def eratosthenes(n):
    if n==2:
        return [2]
    prime = [2]
    limit = int(n**0.5)
    data = [i + 1 for i in range(2, n, 2)]
    while True:
        p = data[0]#まだ残ってる中での最小の素数
        if limit <= p:
            return prime + data
        prime.append(p)
        data = [e for e in data if e % p != 0]#リスト内包表記で消してる
prime=eratosthenes(N)
dp=[-1]*(N+1)
dp[0]=0
for i in prime:
    for j in reversed(range(N+1)):
        if dp[j]==-1:
            continue
        if j+i<=N:
            dp[j+i]=max(dp[j+i],dp[j]+1)
print(dp[-1] if dp[-1]!=-1 else -1)
0