結果

問題 No.458 異なる素数の和
ユーザー らーゆらーゆ
提出日時 2024-05-02 21:58:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 778 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 23,872 KB
最終ジャッジ日時 2024-11-23 16:46:02
合計ジャッジ時間 43,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
13,640 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 361 ms
13,636 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2 ms
13,636 KB
testcase_11 TLE -
testcase_12 AC 2 ms
13,632 KB
testcase_13 AC 2 ms
13,492 KB
testcase_14 AC 2 ms
13,636 KB
testcase_15 AC 2 ms
15,776 KB
testcase_16 TLE -
testcase_17 AC 8 ms
17,440 KB
testcase_18 AC 8 ms
13,640 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 WA -
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 15 ms
6,816 KB
testcase_24 AC 12 ms
6,820 KB
testcase_25 AC 8 ms
6,816 KB
testcase_26 AC 7 ms
6,820 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

using namespace std;
#include<iostream>
#include<algorithm>
#include<cstring>
#include<vector>
#include<cmath>
int N;
int dp[20009];
vector<int> p(20009);
int fanc(int i, vector<int> p) {
	if (dp[i] != -1) {
		return dp[i];
	}
	int res = -1;
	if (i == 0) res = 0;
	for (int j = 2; j <= N; j++) {
		if (p[j]==1 and (i - j) >= 0) {
			p[j] = 0;
			if (res < fanc(i - j,p) + 1) {
				if (fanc(i - j,p) == -1) {
					res = -1;
				}
				else {
					res = fanc(i - j, p) + 1;
				}
			}
		}
	}
	return dp[i] = res;
}

int main() {
	cin >> N;
	for (int j = 2; j <= N; j++) {
		for (int k = 2; k <= int(sqrt(j)); k++) {
			if (j % k == 0 and j != k) {
				p[j] = -1;
				break;
			}
		}
		if (p[j] != -1) {
			p[j] = 1;
		}
	}
	memset(dp, -1, sizeof(dp));
	cout << fanc(N,p) << endl;
}
0