From f05d888a0b621ca4e99e2b0fb6e23c097006fe41 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 28 May 2024 10:29:13 +0200 Subject: Init --- progs/a816.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 progs/a816.py (limited to 'progs/a816.py') diff --git a/progs/a816.py b/progs/a816.py new file mode 100644 index 0000000..2809b86 --- /dev/null +++ b/progs/a816.py @@ -0,0 +1,20 @@ +import math +def sumofFactors(n) : + if (n % 2 != 0) : + return 0 + res = 1 + for i in range(2, (int)(math.sqrt(n)) + 1) : + count = 0 + curr_sum = 1 + curr_term = 1 + while (n % i == 0) : + count= count + 1 + n = n // i + if (i == 2 and count == 1) : + curr_sum = 0 + curr_term = curr_term * i + curr_sum = curr_sum + curr_term + res = res * curr_sum + if (n >= 2) : + res = res * (1 + n) + return res \ No newline at end of file -- cgit v1.2.3-18-g5258