|
1 | 1 | /**
|
2 |
| -*The most relevant definition for this problem is 2a: An integer g > 1 is said to be prime if and only |
3 |
| -*if its only positive divisors are itself and one (otherwise it is said to be composite). For example, the |
4 |
| -*number 21 is composite; the number 23 is prime. Note that the decompositon of a positive number g |
5 |
| -*into its prime factors, i.e., |
6 |
| -*g = f1 × f2 × · · · × fn |
7 |
| -*is unique if we assert that fi > 1 for all i and fi ≤ fj for i < j. |
8 |
| -*One interesting class of prime numbers are the so-called Mersenne primes which are of the form |
9 |
| -*2 |
10 |
| -*p − 1. Euler proved that 2 |
11 |
| -*31 − 1 is prime in 1772 — all without the aid of a computer. |
12 |
| -*Input |
13 |
| -*The input will consist of a sequence of numbers. Each line of input will contain one number g in the |
14 |
| -*range −2 |
15 |
| -*31 < g < 2 |
16 |
| -*31, but different of -1 and 1. The end of input will be indicated by an input line |
17 |
| -*having a value of zero. |
18 |
| -*Output |
19 |
| -*For each line of input, your program should print a line of output consisting of the input number and |
20 |
| -*its prime factors. For an input number g > 0, g = f1 × f2 × · · · × fn, where each fi |
21 |
| -*is a prime number |
22 |
| -*greater than unity (with fi ≤ fj for i < j), the format of the output line should be |
23 |
| -*g = f1 x f2 x . . . x fn |
24 |
| -*When g < 0, if | g |= f1 × f2 × · · · × fn, the format of the output line should be |
25 |
| -*g = -1 x f1 x f2 x . . . x fn |
26 |
| -*Sample Input |
27 |
| -*-190 |
28 |
| -*-191 |
29 |
| -*-192 |
30 |
| -*-193 |
31 |
| -*-194 |
32 |
| -*195 |
33 |
| -*196 |
34 |
| -*197 |
35 |
| -*198 |
36 |
| -*199 |
37 |
| -*200 |
38 |
| -*0 |
39 |
| -*Sample Output |
40 |
| -*-190 = -1 x 2 x 5 x 19 |
41 |
| -*-191 = -1 x 191 |
42 |
| -*-192 = -1 x 2 x 2 x 2 x 2 x 2 x 2 x 3 |
43 |
| -*-193 = -1 x 193 |
44 |
| -*-194 = -1 x 2 x 97 |
45 |
| -*195 = 3 x 5 x 13 |
46 |
| -*196 = 2 x 2 x 7 x 7 |
47 |
| -*197 = 197 |
48 |
| -*198 = 2 x 3 x 3 x 11 |
49 |
| -*199 = 199 |
50 |
| -*200 = 2 x 2 x 2 x 5 x 5 |
51 |
| -*/ |
| 2 | + * The most relevant definition for this problem is 2a: An integer g > 1 is said to be prime if and only |
| 3 | + * if its only positive divisors are itself and one (otherwise it is said to be composite). For example, the |
| 4 | + * number 21 is composite; the number 23 is prime. Note that the decompositon of a positive number g |
| 5 | + * into its prime factors, i.e., |
| 6 | + * g = f1 × f2 × · · · × fn |
| 7 | + * is unique if we assert that fi > 1 for all i and fi ≤ fj for i < j. |
| 8 | + * One interesting class of prime numbers are the so-called Mersenne primes which are of the form |
| 9 | + * 2 |
| 10 | + * p − 1. Euler proved that 2 |
| 11 | + * 31 − 1 is prime in 1772 — all without the aid of a computer. |
| 12 | + * Input |
| 13 | + * The input will consist of a sequence of numbers. Each line of input will contain one number g in the |
| 14 | + * range −2 |
| 15 | + * 31 < g < 2 |
| 16 | + * 31, but different of -1 and 1. The end of input will be indicated by an input line |
| 17 | + * having a value of zero. |
| 18 | + * Output |
| 19 | + * For each line of input, your program should print a line of output consisting of the input number and |
| 20 | + * its prime factors. For an input number g > 0, g = f1 × f2 × · · · × fn, where each fi |
| 21 | + * is a prime number |
| 22 | + * greater than unity (with fi ≤ fj for i < j), the format of the output line should be |
| 23 | + * g = f1 x f2 x . . . x fn |
| 24 | + * When g < 0, if | g |= f1 × f2 × · · · × fn, the format of the output line should be |
| 25 | + * g = -1 x f1 x f2 x . . . x fn |
| 26 | + * Sample Input |
| 27 | + * -190 |
| 28 | + * -191 |
| 29 | + * -192 |
| 30 | + * -193 |
| 31 | + * -194 |
| 32 | + * 195 |
| 33 | + * 196 |
| 34 | + * 197 |
| 35 | + * 198 |
| 36 | + * 199 |
| 37 | + * 200 |
| 38 | + * 0 |
| 39 | + * Sample Output |
| 40 | + * -190 = -1 x 2 x 5 x 19 |
| 41 | + * -191 = -1 x 191 |
| 42 | + * -192 = -1 x 2 x 2 x 2 x 2 x 2 x 2 x 3 |
| 43 | + * -193 = -1 x 193 |
| 44 | + * -194 = -1 x 2 x 97 |
| 45 | + * 195 = 3 x 5 x 13 |
| 46 | + * 196 = 2 x 2 x 7 x 7 |
| 47 | + * 197 = 197 |
| 48 | + * 198 = 2 x 3 x 3 x 11 |
| 49 | + * 199 = 199 |
| 50 | + * 200 = 2 x 2 x 2 x 5 x 5 |
| 51 | + */ |
52 | 52 |
|
53 | 53 | //https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=524
|
54 | 54 |
|
|
0 commit comments