結果

問題 No.458 異なる素数の和
ユーザー tlllunetlllune
提出日時 2018-11-10 16:29:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 11,140 KB
最終ジャッジ日時 2023-08-16 04:00:11
合計ジャッジ時間 2,876 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
10,908 KB
testcase_01 AC 6 ms
10,880 KB
testcase_02 AC 7 ms
10,908 KB
testcase_03 AC 7 ms
10,868 KB
testcase_04 AC 6 ms
10,952 KB
testcase_05 AC 6 ms
10,888 KB
testcase_06 AC 7 ms
10,888 KB
testcase_07 AC 6 ms
10,884 KB
testcase_08 AC 6 ms
10,868 KB
testcase_09 AC 6 ms
10,892 KB
testcase_10 AC 6 ms
10,880 KB
testcase_11 AC 6 ms
10,896 KB
testcase_12 AC 7 ms
10,848 KB
testcase_13 WA -
testcase_14 AC 6 ms
10,840 KB
testcase_15 AC 6 ms
10,892 KB
testcase_16 AC 5 ms
10,884 KB
testcase_17 AC 6 ms
10,908 KB
testcase_18 AC 6 ms
10,900 KB
testcase_19 AC 6 ms
11,008 KB
testcase_20 AC 6 ms
10,820 KB
testcase_21 AC 5 ms
10,892 KB
testcase_22 AC 6 ms
10,952 KB
testcase_23 AC 5 ms
10,972 KB
testcase_24 AC 6 ms
10,884 KB
testcase_25 AC 6 ms
10,820 KB
testcase_26 AC 6 ms
10,832 KB
testcase_27 AC 6 ms
10,952 KB
testcase_28 WA -
testcase_29 AC 5 ms
11,004 KB
testcase_30 AC 6 ms
10,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <iomanip>
#include <utility>
#include <set>
#include <map>

using namespace std;

vector<int> sq;
int ssm=0,n;
int dp[100][20010];
bool f;

int main(){
    for(int i=2;ssm<20001;i++){
        f=true;
        for(int j:sq)f=f and (i%j!=0);
        if(f){
            ssm+=i;
            sq.push_back(i);
        }
    }
    scanf("%d",&n);
    for(int i=0;i<20001;i++)dp[0][i]=0;
    for(int j=1;j<=93;j++){
        for(int i=20000;i>=0;i--){
            dp[j][i]=dp[j-1][i];
            if((i==0 or dp[j-1][i]!=0) and sq[j-1]+i<20001)dp[j][i+sq[j-1]]=max(dp[j-1][i]+1,dp[j][i+sq[j-1]]);

        }
    }
    //for(int i=0;i<20;i++)printf("%d ",dp[92][i]);
    if(dp[92][n]<=1)dp[92][n]=-1;
    printf("%d\n",dp[92][n]);

}
0