-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathid0044.c
More file actions
40 lines (31 loc) · 755 Bytes
/
id0044.c
File metadata and controls
40 lines (31 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Licensed under the MIT License.
// Pentagon Numbers
#include <limits.h>
#include <math.h>
#include "../lib/euler.h"
#define MAX_SEARCH 10000
int main(void)
{
long min = LONG_MAX;
clock_t start = clock();
for (int m = 1; m < MAX_SEARCH; m++)
{
long j = (3 * m - 1) * m / 2;
for (int n = m + 1; n < MAX_SEARCH; n++)
{
long k = (3 * n - 1) * n / 2;
long d = k - j;
if (d >= min)
{
continue;
}
if (!math_is_polygonal(5, d, NULL) ||
!math_is_polygonal(5, k + j, NULL))
{
continue;
}
min = d;
}
}
return euler_submit(44, min, start);
}