結果

問題 No.458 異なる素数の和
ユーザー soisusoisu
提出日時 2021-09-17 11:42:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 68,076 KB
最終ジャッジ日時 2024-06-29 17:24:12
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,016 KB
testcase_01 AC 132 ms
66,444 KB
testcase_02 AC 153 ms
66,460 KB
testcase_03 AC 67 ms
66,624 KB
testcase_04 AC 73 ms
67,248 KB
testcase_05 AC 298 ms
68,076 KB
testcase_06 AC 150 ms
66,784 KB
testcase_07 AC 47 ms
62,412 KB
testcase_08 AC 296 ms
67,740 KB
testcase_09 AC 57 ms
64,780 KB
testcase_10 AC 34 ms
52,152 KB
testcase_11 AC 337 ms
66,772 KB
testcase_12 AC 33 ms
52,772 KB
testcase_13 AC 33 ms
52,512 KB
testcase_14 AC 32 ms
53,536 KB
testcase_15 AC 33 ms
52,272 KB
testcase_16 AC 59 ms
65,192 KB
testcase_17 AC 34 ms
57,924 KB
testcase_18 AC 35 ms
58,260 KB
testcase_19 AC 31 ms
52,628 KB
testcase_20 AC 36 ms
59,860 KB
testcase_21 AC 30 ms
52,932 KB
testcase_22 AC 31 ms
52,284 KB
testcase_23 AC 35 ms
59,044 KB
testcase_24 AC 35 ms
58,488 KB
testcase_25 AC 31 ms
52,300 KB
testcase_26 AC 34 ms
58,144 KB
testcase_27 AC 143 ms
65,868 KB
testcase_28 AC 328 ms
66,724 KB
testcase_29 AC 48 ms
64,920 KB
testcase_30 AC 105 ms
66,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
p=[True]*(N+1)
p[0]=p[1]=False
for i in range(2,N+1):
    for j in range(i*i,N+1,i):
        p[j]=False

prime=[]
for i in range(N+1):
    if p[i]:
        prime.append(i)

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

for u in prime:
    for i in range(N,-1,-1):
        if u+i<=N and dp[i]!=-1:
            dp[u+i]=max(dp[u+i],dp[i]+1)

print(dp[N])
0