結果

問題 No.458 異なる素数の和
ユーザー megasharesmegashares
提出日時 2018-09-13 14:16:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 32,640 KB
実行使用メモリ 180,668 KB
最終ジャッジ日時 2024-07-01 04:22:48
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 39 ms
68,084 KB
testcase_02 AC 43 ms
83,048 KB
testcase_03 AC 14 ms
34,740 KB
testcase_04 AC 15 ms
19,072 KB
testcase_05 AC 71 ms
158,344 KB
testcase_06 AC 38 ms
79,508 KB
testcase_07 AC 3 ms
10,488 KB
testcase_08 AC 70 ms
159,764 KB
testcase_09 AC 7 ms
28,812 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 10 ms
29,248 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 37 ms
76,680 KB
testcase_28 AC 78 ms
177,016 KB
testcase_29 AC 5 ms
20,772 KB
testcase_30 AC 26 ms
56,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   32 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>
#include <limits.h>

int snt(int a, int arr[], int max) {
	int i;

	for (i = 1; i <= max; i++) {
		if (a == arr[i]) {
			return 1;
		}
	}

	return 0;
}

int findMax(int a, int b) {
	return a > b ? a : b;
}

int f[10000][20000] = {};
const int inf = -INT_MAX;

int main() {
	int n;
	int i, j;
	int max;
	int check[21000] = {};
	int arr[10000] = {};


	scanf("%d", &n);

	for (i = 2; i <= sqrt(n); i++) {
		for (j = 2; j <= n / i; j++) {
			check[i*j] = 1;
		}
	}

	max = 1;
	for (i = 2; i <= n; i++) {
		if (!check[i]) arr[max++] = i;
	}
	max--;

	for (i = 1; i <= n; i++) {
		f[0][i] = inf;
	}

	for (i = 1; i <= max; i++) {
		for (j = 0; j <= n; j++) {
			if (j - arr[i] >= 0) {
				f[i][j] = findMax(f[i - 1][j], f[i - 1][j - arr[i]] + 1);
			}
			else {
				f[i][j] = f[i - 1][j];
			}
		}
	}


	int result = (f[max][n] <0 ? -1 : f[max][n]);
	printf("%d", result);
	getchar(); getchar();

	return 0;
}
0