結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 824 ms
416,300 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 823 ms
416,648 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 547 ms
416,272 KB
testcase_11 AC 829 ms
416,056 KB
testcase_12 AC 822 ms
417,444 KB
testcase_13 WA -
testcase_14 AC 813 ms
417,144 KB
testcase_15 AC 819 ms
416,136 KB
testcase_16 AC 822 ms
416,532 KB
testcase_17 AC 822 ms
416,792 KB
testcase_18 AC 824 ms
416,120 KB
testcase_19 WA -
testcase_20 AC 814 ms
415,744 KB
testcase_21 AC 812 ms
416,912 KB
testcase_22 AC 827 ms
416,472 KB
testcase_23 WA -
testcase_24 AC 816 ms
415,624 KB
testcase_25 AC 816 ms
415,892 KB
testcase_26 AC 813 ms
415,932 KB
testcase_27 AC 833 ms
415,984 KB
testcase_28 AC 831 ms
417,384 KB
testcase_29 WA -
testcase_30 AC 830 ms
416,320 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(2,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