結果

問題 No.458 異なる素数の和
ユーザー syunsukesyunsuke
提出日時 2019-04-18 22:06:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 67,524 KB
最終ジャッジ日時 2024-09-22 10:45:02
合計ジャッジ時間 5,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,540 KB
testcase_01 AC 210 ms
67,228 KB
testcase_02 AC 262 ms
66,344 KB
testcase_03 AC 88 ms
66,408 KB
testcase_04 AC 100 ms
65,776 KB
testcase_05 AC 507 ms
67,524 KB
testcase_06 AC 244 ms
66,048 KB
testcase_07 AC 49 ms
62,576 KB
testcase_08 AC 512 ms
67,212 KB
testcase_09 AC 63 ms
66,044 KB
testcase_10 AC 37 ms
53,380 KB
testcase_11 AC 600 ms
67,040 KB
testcase_12 AC 37 ms
52,268 KB
testcase_13 AC 37 ms
53,092 KB
testcase_14 AC 37 ms
53,028 KB
testcase_15 AC 38 ms
52,868 KB
testcase_16 AC 76 ms
65,640 KB
testcase_17 AC 43 ms
59,276 KB
testcase_18 AC 42 ms
57,768 KB
testcase_19 AC 37 ms
52,804 KB
testcase_20 AC 42 ms
58,864 KB
testcase_21 AC 39 ms
52,488 KB
testcase_22 AC 37 ms
52,904 KB
testcase_23 AC 42 ms
58,996 KB
testcase_24 AC 41 ms
59,456 KB
testcase_25 AC 38 ms
52,964 KB
testcase_26 AC 39 ms
58,748 KB
testcase_27 AC 234 ms
67,068 KB
testcase_28 AC 585 ms
66,584 KB
testcase_29 AC 55 ms
63,680 KB
testcase_30 AC 169 ms
66,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

SO=[1 for i in range(N+1)]
SO[0]=0
SO[1]=0
for i in range(2,N+1):
    if SO[i]==1:
        for j in range(2,N+1):
            if i*j>N:
                break
            else:
                SO[i*j]=0
#print(SO)
L=[]
for i in range(len(SO)):
    if SO[i]==1:
        L.append(i)
#print(L)
dp=[-1 for i in range(N+1)]
dp[0]=0
for i in range(len(L)):
    for j in range(N+1):
        if L[i]<=j and dp[N-j]>=0:
            if dp[N-j+L[i]]<dp[N-j]+1:
                dp[N-j+L[i]]=dp[N-j]+1
print(dp[N])
0