結果

問題 No.458 異なる素数の和
ユーザー 幸せウサギ幸せウサギ
提出日時 2019-04-03 09:10:47
言語 C++11
(gcc 13.3.0)
結果
MLE  
実行時間 -
コード長 641 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 62,616 KB
実行使用メモリ 1,192,628 KB
最終ジャッジ日時 2024-12-17 12:32:55
合計ジャッジ時間 111,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 TLE -
testcase_04 MLE -
testcase_05 TLE -
testcase_06 MLE -
testcase_07 TLE -
testcase_08 MLE -
testcase_09 TLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 MLE -
testcase_25 TLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 TLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<cstdio>
#include<iostream>
#include<cmath>
using namespace std;
int N,M;
int i1[7500]={0};
int dp[7500][20010]={0};
int i,j,k,c=0;
int main(void){
	cin>>N;
	i1[c]=2;
	c++;
	for(i=3;i<=N;i+=2){
		k=0;
		for(j=3;j<=sqrt(i);j+=2)
		{
			if(i%j==0)
			{
				k=1;
				break;
			}
		}
		if(k==0){
			i1[c]=i;
			c++;
		}
	}
	M=i1[0];
	for(j=0;j<c;j++){
		for(i=2;i<=M;i++){
			if((dp[j][i-i1[j]]>0||i1[j]==i)&&i-i1[j]>=0){
				dp[j+1][i]=max(dp[j][i],dp[j][i-i1[j]]+1);
			}
			else{
				dp[j+1][i]=dp[j][i];
			}
			M+=i1[j+1];
		}
	}
	if(dp[c][N]==0){cout<<-1<<endl;;}
	else{
		cout<<dp[c][N]<<endl;
		}
	return 0;
}
0