結果

問題 No.458 異なる素数の和
ユーザー muripoyotaromuripoyotaro
提出日時 2018-08-13 16:47:05
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 122,624 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 17:49:44
合計ジャッジ時間 1,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
6,944 KB
testcase_02 AC 32 ms
6,948 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 51 ms
6,940 KB
testcase_06 AC 31 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 WA -
testcase_25 AC 2 ms
6,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 5 ms
6,940 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
typedef long long ll;
typedef long double ld;
using namespace std;
ll prime(ll x) {
	ll i;
	if (x < 2)return 0;
	else if (x == 2) return 1;
	if (x % 2 == 0) return 0;
	for (i = 3; i*i <= x; i += 2) {
		if (x%i == 0) return 0;
	}
	return 1;
}
int main() {
	ll N;
	cin >> N;
	vector<ll>v;
	for (ll i = 2; i <= 20000; i++) {
		if (prime(i)) {
			v.push_back(i);
		}
	}
	ll dp[20010];
	for (ll i = 0; i <= 20000; i++) {
		dp[i] = -1;
	}
	dp[0] = 0;
	for (ll i = 0; i<v.size(); i++) {
		for (ll j = N; j >= 0; j--) {
          	if(dp[i]==-1) continue;
			if (v[i] + j <= N ) {
				dp[j + v[i]] = max(dp[j + v[i]], dp[j] + 1);
			}
		}

	}

	cout << dp[N] << endl;
}
0