結果

問題 No.458 異なる素数の和
ユーザー soisusoisu
提出日時 2021-09-18 10:20:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 67,808 KB
最終ジャッジ日時 2024-06-30 07:27:43
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,224 KB
testcase_01 AC 150 ms
66,088 KB
testcase_02 AC 180 ms
66,932 KB
testcase_03 AC 76 ms
65,476 KB
testcase_04 AC 85 ms
66,552 KB
testcase_05 AC 327 ms
66,536 KB
testcase_06 AC 172 ms
65,796 KB
testcase_07 AC 51 ms
62,832 KB
testcase_08 AC 330 ms
66,812 KB
testcase_09 AC 63 ms
65,360 KB
testcase_10 AC 40 ms
52,124 KB
testcase_11 AC 382 ms
66,764 KB
testcase_12 AC 40 ms
52,488 KB
testcase_13 AC 40 ms
53,168 KB
testcase_14 AC 39 ms
52,492 KB
testcase_15 AC 39 ms
51,832 KB
testcase_16 AC 69 ms
64,896 KB
testcase_17 AC 42 ms
57,744 KB
testcase_18 AC 42 ms
57,464 KB
testcase_19 AC 40 ms
53,316 KB
testcase_20 AC 47 ms
58,552 KB
testcase_21 AC 40 ms
52,248 KB
testcase_22 AC 40 ms
52,272 KB
testcase_23 AC 44 ms
59,892 KB
testcase_24 AC 44 ms
58,512 KB
testcase_25 AC 40 ms
51,900 KB
testcase_26 AC 43 ms
58,004 KB
testcase_27 AC 164 ms
66,608 KB
testcase_28 AC 371 ms
66,180 KB
testcase_29 AC 59 ms
65,108 KB
testcase_30 AC 122 ms
67,808 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