結果

問題 No.458 異なる素数の和
ユーザー tancahn2380tancahn2380
提出日時 2017-09-21 18:48:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,183 bytes
コンパイル時間 943 ms
コンパイル使用メモリ 88,156 KB
実行使用メモリ 180,224 KB
最終ジャッジ日時 2024-11-08 19:30:13
合計ジャッジ時間 5,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
101,248 KB
testcase_01 AC 134 ms
130,688 KB
testcase_02 AC 151 ms
135,424 KB
testcase_03 AC 99 ms
113,792 KB
testcase_04 AC 102 ms
115,712 KB
testcase_05 AC 214 ms
172,544 KB
testcase_06 AC 143 ms
134,272 KB
testcase_07 AC 78 ms
102,144 KB
testcase_08 AC 216 ms
173,440 KB
testcase_09 AC 88 ms
107,392 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 75 ms
100,224 KB
testcase_14 AC 77 ms
100,224 KB
testcase_15 WA -
testcase_16 AC 95 ms
110,208 KB
testcase_17 AC 74 ms
100,352 KB
testcase_18 AC 76 ms
100,352 KB
testcase_19 AC 74 ms
100,352 KB
testcase_20 AC 74 ms
100,480 KB
testcase_21 AC 76 ms
100,224 KB
testcase_22 AC 75 ms
100,224 KB
testcase_23 AC 75 ms
100,480 KB
testcase_24 AC 76 ms
100,480 KB
testcase_25 AC 74 ms
100,224 KB
testcase_26 AC 75 ms
100,480 KB
testcase_27 AC 142 ms
133,504 KB
testcase_28 AC 232 ms
180,096 KB
testcase_29 AC 86 ms
105,088 KB
testcase_30 AC 127 ms
125,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <iostream>
# include <algorithm>
# include <vector>
# include <string>
# include <set>
# include <map>
# include <cmath>
# include <iomanip>
# include <functional>
# include <utility>
# include <stack>
# include <queue>
# include <list>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
constexpr long long MOD = 1000000000 + 7;
constexpr long long INF = 100000000000000;
const double PI = acos(-1);

int dp[2300][20000];

std::vector<int> prime;
void MakePrime(int n) {
	prime.emplace_back(2);
	for (int i = 3; i < n; i += 2) {
		bool a = false;
		for (int j = 3; j <= std::sqrt(i); j += 2) {
			if (i%j == 0) {
				a = true;
			}
		}
		if (a == false) {
			prime.emplace_back(i);
		}
	}
}

int main() {
	MakePrime(20000);
	int n;
	cin >> n;
	for (int i = 0; i < 1500; i++) {
		for (int j = 0; j < 15000; j++) {
			dp[i][j] = -1;
		}
	}
	dp[0][0] = 0;
	for (int i = 0; i < prime.size(); i++) {
		for (int j = 0; j <= n; j++) {
			if (dp[i][j] == -1)continue;
			if (j + prime[i] <= n)dp[i + 1][j + prime[i]] = max(dp[i + 1][j + prime[i]], dp[i][j] + 1);
			dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
		}
	}
	cout << dp[prime.size()][n] << endl;
}
0