|
||||||||||
Gcd and LcmTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others)Total Submission(s): 190 Accepted Submission(s): 73 Problem Description $\sum_{i=1}^n\sum_{j=1}^n\sum_{k=1}^n\sum_{l=1}^n [(i,j),(k,l)]$ Input First line contains a single integer $T \leq 100$ which denotes the number of test cases. For each test case, there is an positive integer $n \leq 10^{7}$. Output For each case, output an integer in a single line means the answer mod $2^{32}$. Sample Input
Sample Output
Hint [a,b] means lowest common multiple of a and b,(a,b) means greatest common divisor of a and b. Source | ||||||||||
|