結果

問題 No.458 異なる素数の和
ユーザー kotatsuinu5kotatsuinu5
提出日時 2020-11-28 16:35:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 417,544 KB
最終ジャッジ日時 2024-09-12 23:13:34
合計ジャッジ時間 27,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 838 ms
415,888 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 841 ms
416,800 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 555 ms
415,764 KB
testcase_11 AC 838 ms
416,724 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 820 ms
416,284 KB
testcase_16 AC 837 ms
416,080 KB
testcase_17 AC 822 ms
416,760 KB
testcase_18 AC 820 ms
415,824 KB
testcase_19 AC 823 ms
416,236 KB
testcase_20 AC 824 ms
416,836 KB
testcase_21 AC 825 ms
417,016 KB
testcase_22 AC 817 ms
416,732 KB
testcase_23 WA -
testcase_24 AC 827 ms
416,680 KB
testcase_25 AC 822 ms
417,544 KB
testcase_26 AC 826 ms
416,536 KB
testcase_27 AC 844 ms
416,264 KB
testcase_28 AC 840 ms
416,224 KB
testcase_29 WA -
testcase_30 AC 844 ms
416,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
S=[]

maxv=20010
def eratos(n):
    isprime=[True]*(n+1)
    isprime[0]=False
    isprime[1]=False
    for i in range(2,int(math.sqrt(n))+1):
        if isprime[i]==True:
            j=i+i
            while j<=n:
                isprime[j] =False
                j=j+i

    for i in range(n+1):
        if isprime[i]==True:
            S.append(i)
    return S
    
sosu=eratos(maxv)
#print(sosu)
#print(len(sosu))


DP = [[-1]*(maxv) for i in range(len(S)+1)] 

for i in range(len(S)):
    for j in range(maxv):
        if DP[i][j]+S[i]<= N and j+S[i]<=N:
            DP[i+1][j+S[i]]=DP[i][j]+1

ans=-1
for i in range(len(S)):
    if DP[i][N]>ans:
        ans=DP[i][N]
if ans>0:
    
    print(ans+1)
else:
    print(-1)
0