結果

問題 No.458 異なる素数の和
ユーザー playrollerplayroller
提出日時 2018-11-11 18:52:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,134 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 172,172 KB
実行使用メモリ 180,224 KB
最終ジャッジ日時 2024-05-08 07:16:35
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 57 ms
53,504 KB
testcase_02 AC 72 ms
69,120 KB
testcase_03 AC 14 ms
14,208 KB
testcase_04 AC 18 ms
17,536 KB
testcase_05 AC 160 ms
150,400 KB
testcase_06 AC 69 ms
65,408 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 162 ms
151,808 KB
testcase_09 AC 6 ms
6,656 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 194 ms
180,224 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 9 ms
9,472 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 64 ms
62,080 KB
testcase_28 AC 191 ms
176,384 KB
testcase_29 WA -
testcase_30 AC 41 ms
39,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, j, n) for(int i=j;i<n;++i)
#define all(i) i.begin(),i.end()
#define rall(i) i.rbegin(),i.rend()
#define INF 1e9
const int mod = 1e9 + 7;

typedef long long i64;
typedef pair<int, int> pi;

template <class T> using vt = vector<T>;
template <class T> using vvt = vector<vector<T>>;

i64 gcd(i64 n, i64 m) {return (m == 0? n : gcd(m, n % m));}
i64 lcm(i64 n, i64 m) {return (n / gcd(n, m) * m);}
int dx[] = {0, 1, 0, -1};
int dy[] = {1, 0, -1, 0};

bool PrimeNumber(int n) {
  if(n < 2) return false;
  for(int i = 2; i * i <= n; ++i) {
    if(n % i == 0) return false;
  }
  return true;
}

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);

  int n;
  cin >> n;

  vt<int> vec;
  rep(i, 2, n + 1) {
    if(PrimeNumber(i)) vec.push_back(i);
  }

  int sz = vec.size();
  vvt<int> dp(sz + 1, vt<int>(n + 1, -1));
  dp[0][0] = 0;
  rep(i, 0, sz) {
    rep(j, 0, n + 1) {
      dp[i + 1][j] = dp[i][j];
      if(j >= vec[i]) dp[i + 1][j] = max(dp[i + 1][j], dp[i][j - vec[i]] + 1);
    }
  }
  if(dp[sz][n] == 0) cout << -1 << endl;
  else cout << dp[sz][n] << endl;
}
0