結果

問題 No.458 異なる素数の和
ユーザー kotamanegikotamanegi
提出日時 2016-12-16 23:14:41
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,176 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 89,636 KB
実行使用メモリ 180,352 KB
最終ジャッジ日時 2024-05-08 00:29:08
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
26,240 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 115 ms
87,040 KB
testcase_04 AC 124 ms
95,616 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
32,128 KB
testcase_08 WA -
testcase_09 AC 75 ms
57,856 KB
testcase_10 AC 19 ms
20,992 KB
testcase_11 WA -
testcase_12 AC 19 ms
21,120 KB
testcase_13 AC 18 ms
20,992 KB
testcase_14 AC 19 ms
21,120 KB
testcase_15 AC 18 ms
20,992 KB
testcase_16 AC 93 ms
71,424 KB
testcase_17 AC 21 ms
22,016 KB
testcase_18 AC 20 ms
22,144 KB
testcase_19 AC 18 ms
21,120 KB
testcase_20 AC 22 ms
22,656 KB
testcase_21 AC 19 ms
21,248 KB
testcase_22 AC 18 ms
21,248 KB
testcase_23 AC 20 ms
22,272 KB
testcase_24 AC 21 ms
22,656 KB
testcase_25 AC 20 ms
21,760 KB
testcase_26 AC 20 ms
22,016 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 59 ms
46,464 KB
testcase_30 AC 171 ms
131,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define  _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream> 
#include<map>
#include <iomanip>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
using namespace std;
#define MAX_MOD 1000000007
#define REP(i,n) for(long long i = 0;i < n;++i)
#define LONG_INF 100000000000000
vector<int> sosuu;
int wow[10000][20000] = {};
void setted() {
	for (int i = 2;i < 20000;++i) {
		for (int q = 2;q <= sqrt(i);++q) {
			if (i%q == 0) goto fail;
		}
		sosuu.push_back(i);
	fail:;
	}
}
int main() {
	int m;
	cin >> m;
	setted();
	for (int i = 1;i - 1 < sosuu.size();++i) {
		wow[i][sosuu[i - 1]] = 1;
		for (int q = 0;q <= m;++q) {
			wow[i][q] = max(wow[i][q], wow[i - 1][q]);
			if (wow[i - 1][q] != 0) {
				wow[i][q + sosuu[i - 1]] = max(wow[i][q + sosuu[i - 1]], wow[i][q] + 1);
			}
		}
	}
	if (wow[sosuu.size()][m] == 0) {
		cout << -1 << endl;
		return 0;
	}
	cout << wow[sosuu.size()][m] << endl;
	return 0;
}
0