コード例 #1
0
 long SumOfProperDivisors(long i)
 {
     return(Factors.SumOfProperDivisors(i));
 }
コード例 #2
0
 public static long Solution()
 {
     return(Factors.PrimeNumberBelow(2000000).Sum());
 }