結果
問題 | No.458 異なる素数の和 |
ユーザー | agonybusscla191 |
提出日時 | 2018-02-13 01:10:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 1,299 ms |
コンパイル使用メモリ | 165,968 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 10:02:59 |
合計ジャッジ時間 | 3,416 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 35 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 | 36 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 35 ms
5,376 KB |
testcase_17 | AC | 35 ms
5,376 KB |
testcase_18 | AC | 37 ms
5,376 KB |
testcase_19 | AC | 37 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 37 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 36 ms
5,376 KB |
testcase_26 | AC | 35 ms
5,376 KB |
testcase_27 | AC | 36 ms
5,376 KB |
testcase_28 | AC | 37 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 38 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int N, dp[40030]; bool prime[20010]; int main(){ for(int i=0;i<40030;i++){ dp[i]=-1; } for(int i=0;i<20010;i++){ prime[i]=true; } prime[1]=true; for(int i=2;i<=sqrt(20010);i++){ if(!prime[i]){ continue; } for(int j=i+i;j<20010;j+=i){ prime[j]=false; } } cin>>N; dp[0]=0; for(int p=1;p<20010;p++){ if(!prime[p]){ continue; } for(int i=20010;i>=0;i--){ if(dp[i]!=(-1)){ dp[i+p]=max(dp[i+p], dp[i]+1); } } } cout<<dp[N]<<endl; return 0; }