返回介绍

solution / 0500-0599 / 0507.Perfect Number / README_EN

发布于 2024-06-17 01:04:00 字数 2686 浏览 0 评论 0 收藏 0

507. Perfect Number

中文文档

Description

A perfect number is a positive integer that is equal to the sum of its positive divisors, excluding the number itself. A divisor of an integer x is an integer that can divide x evenly.

Given an integer n, return true_ if _n_ is a perfect number, otherwise return _false.

 

Example 1:

Input: num = 28
Output: true
Explanation: 28 = 1 + 2 + 4 + 7 + 14
1, 2, 4, 7, and 14 are all divisors of 28.

Example 2:

Input: num = 7
Output: false

 

Constraints:

  • 1 <= num <= 108

Solutions

Solution 1

class Solution:
  def checkPerfectNumber(self, num: int) -> bool:
    if num == 1:
      return False
    s, i = 1, 2
    while i * i <= num:
      if num % i == 0:
        s += i
        if i != num // i:
          s += num // i
      i += 1
    return s == num
class Solution {

  public boolean checkPerfectNumber(int num) {
    if (num == 1) {
      return false;
    }
    int s = 1;
    for (int i = 2; i * i <= num; ++i) {
      if (num % i == 0) {
        s += i;
        if (i != num / i) {
          s += num / i;
        }
      }
    }
    return s == num;
  }
}
class Solution {
public:
  bool checkPerfectNumber(int num) {
    if (num == 1) return false;
    int s = 1;
    for (int i = 2; i * i <= num; ++i) {
      if (num % i == 0) {
        s += i;
        if (i != num / i) s += num / i;
      }
    }
    return s == num;
  }
};
func checkPerfectNumber(num int) bool {
  if num == 1 {
    return false
  }
  s := 1
  for i := 2; i*i <= num; i++ {
    if num%i == 0 {
      s += i
      if i != num/i {
        s += num / i
      }
    }
  }
  return s == num
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文