結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,008 KB
testcase_01 AC 7 ms
10,988 KB
testcase_02 AC 6 ms
10,832 KB
testcase_03 AC 7 ms
11,116 KB
testcase_04 AC 7 ms
11,008 KB
testcase_05 AC 7 ms
10,784 KB
testcase_06 AC 7 ms
11,008 KB
testcase_07 AC 6 ms
11,036 KB
testcase_08 AC 6 ms
10,952 KB
testcase_09 AC 7 ms
10,956 KB
testcase_10 AC 7 ms
11,112 KB
testcase_11 AC 6 ms
11,136 KB
testcase_12 AC 7 ms
11,136 KB
testcase_13 AC 6 ms
11,136 KB
testcase_14 AC 8 ms
10,820 KB
testcase_15 AC 6 ms
10,904 KB
testcase_16 AC 7 ms
11,008 KB
testcase_17 AC 6 ms
10,896 KB
testcase_18 AC 7 ms
10,948 KB
testcase_19 AC 7 ms
11,136 KB
testcase_20 AC 7 ms
10,928 KB
testcase_21 AC 7 ms
10,868 KB
testcase_22 AC 6 ms
11,008 KB
testcase_23 AC 7 ms
10,880 KB
testcase_24 AC 6 ms
10,880 KB
testcase_25 AC 7 ms
10,880 KB
testcase_26 AC 7 ms
10,880 KB
testcase_27 AC 6 ms
11,008 KB
testcase_28 WA -
testcase_29 AC 7 ms
10,984 KB
testcase_30 AC 6 ms
10,880 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]==0)dp[92][n]-=1;
    printf("%d\n",dp[92][n]);

}
0