#Lutece0072. Amicable Pairs
Amicable Pairs
Migrated from Lutece 72 Amicable Pairs
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
A pair of integers (,) is called an amicable pair if the sum of the proper divisors of a equals b, and vice versa. For example, (, ) is an amicable pair, since the proper divisors of are , , , , , , , , , and , and +
+
+
+
+
+
+
+
+
+
, while the proper divisors of are , , , and and their sum is .
Given , output the number of different amicable pairs () where and . Note that () is considered the same pair as ().
- Integer is a proper divisor of if and there exists some integer such that
*
.
Input
The first line is an integer T, number of test cases. T lines follow, each contains an integer K.
Output
For each case, output on a line the number of different amicable pairs satisfying the constraint above.
Samples
2
220
284
2
3
Resources
The 5th UESTC Programming Contest Preliminary