結果

問題 No.458 異なる素数の和
ユーザー tancahn2380tancahn2380
提出日時 2017-09-21 18:52:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 88,036 KB
実行使用メモリ 184,064 KB
最終ジャッジ日時 2024-11-08 19:31:13
合計ジャッジ時間 6,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
183,936 KB
testcase_01 AC 170 ms
183,936 KB
testcase_02 AC 179 ms
184,064 KB
testcase_03 AC 151 ms
183,936 KB
testcase_04 AC 152 ms
183,936 KB
testcase_05 AC 204 ms
183,936 KB
testcase_06 AC 176 ms
183,936 KB
testcase_07 AC 138 ms
184,064 KB
testcase_08 AC 203 ms
183,936 KB
testcase_09 AC 143 ms
183,936 KB
testcase_10 AC 135 ms
183,936 KB
testcase_11 AC 210 ms
183,936 KB
testcase_12 AC 135 ms
183,936 KB
testcase_13 AC 137 ms
183,936 KB
testcase_14 AC 136 ms
183,936 KB
testcase_15 AC 136 ms
184,064 KB
testcase_16 AC 148 ms
183,936 KB
testcase_17 AC 137 ms
183,936 KB
testcase_18 AC 137 ms
183,936 KB
testcase_19 AC 136 ms
183,936 KB
testcase_20 AC 137 ms
183,936 KB
testcase_21 AC 145 ms
183,936 KB
testcase_22 AC 137 ms
183,936 KB
testcase_23 AC 138 ms
183,936 KB
testcase_24 AC 139 ms
183,936 KB
testcase_25 AC 136 ms
184,064 KB
testcase_26 AC 138 ms
183,936 KB
testcase_27 AC 174 ms
184,064 KB
testcase_28 AC 211 ms
183,936 KB
testcase_29 AC 141 ms
184,064 KB
testcase_30 AC 165 ms
183,936 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][20100];

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 < 2300; i++) {
		for (int j = 0; j < 20010; 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