시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
---|---|---|---|---|---|
1 초 | 128 MB | 33 | 7 | 7 | 23.333% |
The numbers 220 and 284 are called Amicable Numbers because they are not equal, and for each, the sum of its divisors equals the other number. That is, the sum of the divisors of 220,
1 + 2 + 4 + 5 + 10 + 11 + 20 + 22 + 44 + 55 + 110 equals 284,
and the sum of the divisors of 284,
1 + 2 + 4 + 71 + 142 equals 220.
Produce a program that takes in a natural number and finds the pairs of Amicable Numbers up to and including the given value.
The input is a series of lines, each with a single number N. 0 < N ≤ 106. Input is terminated by a line with the value 0.
For each input number N, output a blank line, then a line with the text ‘Amicable numbers between 1 and N. Follow that with a line for each distinct amicable pair discovered, giving the pair of numbers, separated with a space. Amicable pair should be output with the lesser of the two numbers displayed first. Pairs should be in ascending order of their lesser values. If there are no amicable pairs, display ‘None’. Note: A number cannot form an amicable pair with itself.
100 300 0
Amicable numbers between 1 and 100 None Amicable numbers between 1 and 300 220 284