結果
問題 | No.458 異なる素数の和 |
ユーザー | leafirby |
提出日時 | 2019-08-13 19:36:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,046 bytes |
コンパイル時間 | 1,628 ms |
コンパイル使用メモリ | 169,188 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 13:33:12 |
合計ジャッジ時間 | 3,169 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 9 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 45 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 7 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 6 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 6 ms
5,376 KB |
testcase_21 | AC | 5 ms
5,376 KB |
testcase_22 | AC | 6 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 5 ms
5,376 KB |
testcase_25 | AC | 6 ms
5,376 KB |
testcase_26 | AC | 5 ms
5,376 KB |
testcase_27 | AC | 18 ms
5,376 KB |
testcase_28 | AC | 43 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 13 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define lli long long int #define uli unsigned long long int #define INF 999999999 #define rep(i,m,n) for(lli i = m;i < n;i++) #define rrep(i,m,n) for(lli i=n-1;i > m;i--) #define pb(n) push_back(n) #define Sort(n) sort(n.begin(), n.end()) #define Rev(n) reverse(n.begin(),n.end()) #define Out(S) cout << S << endl #define NeOut(S) cout << S #define HpOut(S) cout << setprecision(20) << S << endl; #define Vecpr vector<pair<lli,lli>> #define mod 1000000007; #define chmax(a, b) a = (((a)<(b)) ? (b) : (a)) #define chmin(a, b) a = (((a)>(b)) ? (b) : (a)) bool is_prime(lli x) { for(lli i = 2; i * i <= x; i++) { if(x % i == 0) return false; } return true; } int main(){ vector<int>prinum(20000,0); rep(i,1,20000)if(is_prime(i))prinum[i]=1; lli A,B,C,D,N; cin >> N; vector<lli>DP(20001,0); rep(i,2,N){ if(prinum[i]){ for(int j=N;j>1;j--){ if(i+j<=N&&DP[j]!=-1){ chmax(DP[i+j],DP[j]+1); } } } } if(DP[N]<2)DP[N]=-1; Out(DP[N]); }