結果

問題 No.458 異なる素数の和
ユーザー 幸せウサギ幸せウサギ
提出日時 2019-04-02 08:58:03
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 62,540 KB
実行使用メモリ 180,128 KB
最終ジャッジ日時 2024-11-28 16:02:12
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 18 ms
44,992 KB
testcase_04 AC 21 ms
54,780 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 4 ms
11,776 KB
testcase_08 WA -
testcase_09 AC 9 ms
28,688 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 WA -
testcase_16 AC 12 ms
37,324 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 6 ms
22,076 KB
testcase_30 AC 43 ms
74,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<cstdio>
#include<iostream>
#include<cmath>
using namespace std;
int N,M;
int i1[20010]={0};
int dp[5000][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++;
		}
	}
	for(j=0;j<c;j++){
		for(i=2;i<=N;i++){
			if(dp[j][i-i1[j]]!=0||i1[j]==i){
				dp[j+1][i]+=max(dp[j][i],dp[j][i-i1[j]]+1);
				//cout<<"l["<<j<<"]="<<i1[j]<<"dp["<<j+1<<"]["<<i<<"]="<<dp[j+1][i]<<endl;
			}
			else{dp[j+1][i]=dp[j][i];}
		}
	}
	cout<<dp[c][N]<<endl;
	return 0;
}
0