From 8663e8d15c5cc3d4b2044584b31ed4498f40720e Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 13 Feb 2020 01:46:30 +0100 Subject: [PATCH] Solved Problem 23 --- Problem_023.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Problem_023.py diff --git a/Problem_023.py b/Problem_023.py new file mode 100644 index 0000000..afb17de --- /dev/null +++ b/Problem_023.py @@ -0,0 +1,29 @@ +import math + +abundant = [] + +for i in range(1, 28124): + divisors = [] + for j in range(1, math.ceil(i / 3) + 1): + if i % j == 0: + divisors.append(j) + if j != 1: + divisors.append(i / j) + + divisors = list(set(divisors)) # Remove duplicates + if sum(divisors) > i: + abundant.append(i) + +sums = [] +for i in range(0, len(abundant)): + for j in range(i, len(abundant)): + sums.append(abundant[i] + abundant[j]) + +sums = list(set(sums)) # Remove dupliactes + +final_sum = 0 +for i in range(1, 28124): + if i not in sums: + final_sum += i + +print(final_sum) \ No newline at end of file