結果

問題 No.458 異なる素数の和
ユーザー tlllunetlllune
提出日時 2018-11-10 16:29:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 78,940 KB
実行使用メモリ 11,304 KB
最終ジャッジ日時 2024-05-03 13:28:35
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,304 KB
testcase_01 AC 6 ms
11,012 KB
testcase_02 AC 5 ms
10,912 KB
testcase_03 AC 5 ms
11,036 KB
testcase_04 AC 6 ms
10,780 KB
testcase_05 AC 5 ms
11,064 KB
testcase_06 AC 6 ms
11,008 KB
testcase_07 AC 6 ms
10,956 KB
testcase_08 AC 6 ms
11,028 KB
testcase_09 AC 6 ms
10,972 KB
testcase_10 AC 6 ms
11,088 KB
testcase_11 AC 6 ms
10,924 KB
testcase_12 AC 6 ms
10,788 KB
testcase_13 WA -
testcase_14 AC 6 ms
11,076 KB
testcase_15 AC 5 ms
11,044 KB
testcase_16 AC 6 ms
11,164 KB
testcase_17 AC 5 ms
11,088 KB
testcase_18 AC 6 ms
10,904 KB
testcase_19 AC 5 ms
11,084 KB
testcase_20 AC 7 ms
10,988 KB
testcase_21 AC 6 ms
10,896 KB
testcase_22 AC 5 ms
10,768 KB
testcase_23 AC 5 ms
10,944 KB
testcase_24 AC 6 ms
11,096 KB
testcase_25 AC 6 ms
11,016 KB
testcase_26 AC 5 ms
11,016 KB
testcase_27 AC 5 ms
10,948 KB
testcase_28 WA -
testcase_29 AC 5 ms
11,116 KB
testcase_30 AC 5 ms
11,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~

ソースコード

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