結果

問題 No.458 異なる素数の和
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2016-12-08 02:31:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 166,164 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 02:08:12
合計ジャッジ時間 21,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 568 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 562 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 564 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 576 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 630 ms
5,376 KB
testcase_17 AC 628 ms
5,376 KB
testcase_18 AC 625 ms
5,376 KB
testcase_19 AC 575 ms
5,376 KB
testcase_20 AC 581 ms
5,376 KB
testcase_21 AC 571 ms
5,376 KB
testcase_22 AC 565 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 570 ms
5,376 KB
testcase_25 AC 563 ms
5,376 KB
testcase_26 AC 566 ms
5,376 KB
testcase_27 AC 565 ms
5,376 KB
testcase_28 AC 564 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 571 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int n,dp[20050];
int main(){
    scanf("%d\n",&n);
    assert(1<=n&&n<=20000);
    for(int i=2;i<20050;i++){
        int ok=1;
        for(int j=2;j<i;j++)if(i%j==0)ok=0;
        if(ok)for(int j=20050-1;j>=i;j--)dp[j]=max(dp[j],dp[j-i]+1);
    }
    if(dp[n]<0)cout<<-1<<endl;
    else cout<<dp[n]<<endl;

}
0