-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEuler_75.c
45 lines (32 loc) · 1.05 KB
/
Euler_75.c
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
41
42
43
44
45
/*
It turns out that 12 cm is the smallest length of wire that can be
bent to form an integer sided right angle triangle in exactly one way,
but there are many more examples.
12 cm: (3,4,5)
24 cm: (6,8,10)
30 cm: (5,12,13)
36 cm: (9,12,15)
40 cm: (8,15,17)
48 cm: (12,16,20)
In contrast, some lengths of wire, like 20 cm, cannot be bent to form an
integer sided right angle triangle, and other lengths allow more than
one solution to be found; for example, using 120 cm it is possible to
form exactly three different integer sided right angle triangles.
120 cm: (30,40,50), (20,48,52), (24,45,51)
Given that L is the length of the wire, for how many values of L ≤ 1,500,000
can exactly one integer sided right angle triangle be formed?
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
int main(){
clock_t start = clock();
int p = 12;
int a, b, c;
// find a and b such that a+b+c = p
clock_t end = clock();
double time_spent = (double)(end - start) / CLOCKS_PER_SEC;
printf("found in %fs\n", time_spent);
}