結果

問題 No.458 異なる素数の和
ユーザー eQeeQe
提出日時 2020-03-27 06:37:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 159,512 KB
実行使用メモリ 388,880 KB
最終ジャッジ日時 2025-01-02 08:11:20
合計ジャッジ時間 3,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
14,100 KB
testcase_01 AC 85 ms
221,484 KB
testcase_02 AC 94 ms
250,280 KB
testcase_03 AC 30 ms
110,328 KB
testcase_04 AC 34 ms
124,680 KB
testcase_05 AC 177 ms
345,384 KB
testcase_06 AC 93 ms
244,292 KB
testcase_07 AC 6 ms
24,228 KB
testcase_08 AC 173 ms
354,612 KB
testcase_09 AC 15 ms
65,164 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 202 ms
388,880 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 22 ms
83,800 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
7,672 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
7,764 KB
testcase_24 AC 2 ms
7,656 KB
testcase_25 AC 2 ms
7,524 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 88 ms
237,668 KB
testcase_28 AC 193 ms
383,688 KB
testcase_29 AC 11 ms
46,668 KB
testcase_30 AC 61 ms
190,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <string>
#define ft first
#define sc second
#define pt(sth) cout << sth << "\n"
#define chmax(a, b) {if(a<b) a=b;}
#define chmin(a, b) {if(a>b) a=b;}
#define moC(a, s, b) (a)=((a)s(b)+MOD)%MOD
using namespace std;
typedef long long ll;
typedef pair<ll, ll> PL;
static const ll INF=1e18;
static const ll MAX=101010;
static const ll MOD=1e9+7;


/*
 for(i=0; i<N; i++)
   cin >> a[i];
*/

vector<ll> ps;

void eratos(ll N) {
  ll isp[N+5];
  memset(isp, 1, sizeof(isp));
  isp[0]=isp[1]=0;
  ll i, j;
  
  for(i=2; i*i<=N; i++) {
    if(isp[i]==0) continue;
    for(j=i+i; j<=N; j+=i)
      isp[j]=0;
  }
  
  for(i=0; i<=N; i++) if(isp[i]) ps.push_back(i);
}

ll dp[2333][22222];

int main(void) {
  ll i, j, k;
  
  ll N;
  cin >> N;
  eratos(N);
  
  for(i=0; i<=ps.size(); i++)
    for(j=0; j<=N; j++)
      dp[i][j]=-1;
  
  dp[0][0]=0;
  for(i=0; i<ps.size(); i++) {
    for(j=0; j<=N; j++) {
      if(dp[i][j]==-1) continue;
      chmax(dp[i+1][j], dp[i][j]);
      
      if(j+ps[i]>N) continue;
      chmax(dp[i+1][j+ps[i]], dp[i][j]+1);
    }
  }
  
  pt(dp[ps.size()][N]);
  
  
}


0