返回介绍

solution / 1900-1999 / 1952.Three Divisors / README_EN

发布于 2024-06-17 01:03:12 字数 3660 浏览 0 评论 0 收藏 0

1952. Three Divisors

中文文档

Description

Given an integer n, return true_ if _n_ has exactly three positive divisors. Otherwise, return _false.

An integer m is a divisor of n if there exists an integer k such that n = k * m.

 

Example 1:

Input: n = 2
Output: false
Explantion: 2 has only two divisors: 1 and 2.

Example 2:

Input: n = 4
Output: true
Explantion: 4 has three divisors: 1, 2, and 4.

 

Constraints:

  • 1 <= n <= 104

Solutions

Solution 1

class Solution:
  def isThree(self, n: int) -> bool:
    return sum(n % i == 0 for i in range(2, n)) == 1
class Solution {
  public boolean isThree(int n) {
    int cnt = 0;
    for (int i = 2; i < n; i++) {
      if (n % i == 0) {
        ++cnt;
      }
    }
    return cnt == 1;
  }
}
class Solution {
public:
  bool isThree(int n) {
    int cnt = 0;
    for (int i = 2; i < n; ++i) {
      cnt += n % i == 0;
    }
    return cnt == 1;
  }
};
func isThree(n int) bool {
  cnt := 0
  for i := 2; i < n; i++ {
    if n%i == 0 {
      cnt++
    }
  }
  return cnt == 1
}
/**
 * @param {number} n
 * @return {boolean}
 */
var isThree = function (n) {
  let cnt = 0;
  for (let i = 2; i < n; ++i) {
    if (n % i == 0) {
      ++cnt;
    }
  }
  return cnt == 1;
};

Solution 2

class Solution:
  def isThree(self, n: int) -> bool:
    cnt = 0
    i = 1
    while i <= n // i:
      if n % i == 0:
        cnt += 1 if i == n // i else 2
      i += 1
    return cnt == 3
class Solution {
  public boolean isThree(int n) {
    int cnt = 0;
    for (int i = 1; i <= n / i; ++i) {
      if (n % i == 0) {
        cnt += n / i == i ? 1 : 2;
      }
    }
    return cnt == 3;
  }
}
class Solution {
public:
  bool isThree(int n) {
    int cnt = 0;
    for (int i = 1; i <= n / i; ++i) {
      if (n % i == 0) {
        cnt += n / i == i ? 1 : 2;
      }
    }
    return cnt == 3;
  }
};
func isThree(n int) bool {
  cnt := 0
  for i := 1; i <= n/i; i++ {
    if n%i == 0 {
      if n/i == i {
        cnt++
      } else {
        cnt += 2
      }
    }
  }
  return cnt == 3
}
/**
 * @param {number} n
 * @return {boolean}
 */
var isThree = function (n) {
  let cnt = 0;
  for (let i = 1; i <= n / i; ++i) {
    if (n % i == 0) {
      cnt += ~~(n / i) == i ? 1 : 2;
    }
  }
  return cnt == 3;
};

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

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

发布评论

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