leetcode:507. 完美数(python3解法)

难度:简单

        对于一个 正整数,如果它和除了它自身以外的所有 正因子 之和相等,我们称它为 「完美数」

        给定一个 整数 n, 如果是完美数,返回 true;否则返回 false

示例 1:

输入:num = 28
输出:true
解释:28 = 1 + 2 + 4 + 7 + 14
1, 2, 4, 7, 和 14 是 28 的所有正因子。

示例 2:

输入:num = 7
输出:false

提示:

  • 1 <= num <= 108

题解:

class Solution:
    def checkPerfectNumber(self, num: int) -> bool:
        res = 0
        c = 1
        while c * c < num:
            if num % c == 0:
                res += c
                if c != 1:
                    res += num // c
            c += 1
        if res == num:
            return True
        return False

leetcode:507. 完美数(python3解法)_第1张图片

你可能感兴趣的:(python,算法,leetcode,算法,python)