返回介绍

solution / 2200-2299 / 2269.Find the K-Beauty of a Number / README_EN

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

2269. Find the K-Beauty of a Number

中文文档

Description

The k-beauty of an integer num is defined as the number of substrings of num when it is read as a string that meet the following conditions:

  • It has a length of k.
  • It is a divisor of num.

Given integers num and k, return _the k-beauty of _num.

Note:

  • Leading zeros are allowed.
  • 0 is not a divisor of any value.

A substring is a contiguous sequence of characters in a string.

 

Example 1:

Input: num = 240, k = 2
Output: 2
Explanation: The following are the substrings of num of length k:
- "24" from "240": 24 is a divisor of 240.
- "40" from "240": 40 is a divisor of 240.
Therefore, the k-beauty is 2.

Example 2:

Input: num = 430043, k = 2
Output: 2
Explanation: The following are the substrings of num of length k:
- "43" from "430043": 43 is a divisor of 430043.
- "30" from "430043": 30 is not a divisor of 430043.
- "00" from "430043": 0 is not a divisor of 430043.
- "04" from "430043": 4 is not a divisor of 430043.
- "43" from "430043": 43 is a divisor of 430043.
Therefore, the k-beauty is 2.

 

Constraints:

  • 1 <= num <= 109
  • 1 <= k <= num.length (taking num as a string)

Solutions

Solution 1

class Solution:
  def divisorSubstrings(self, num: int, k: int) -> int:
    ans = 0
    s = str(num)
    for i in range(len(s) - k + 1):
      t = int(s[i : i + k])
      if t and num % t == 0:
        ans += 1
    return ans
class Solution {
  public int divisorSubstrings(int num, int k) {
    int ans = 0;
    String s = "" + num;
    for (int i = 0; i < s.length() - k + 1; ++i) {
      int t = Integer.parseInt(s.substring(i, i + k));
      if (t != 0 && num % t == 0) {
        ++ans;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int divisorSubstrings(int num, int k) {
    int ans = 0;
    string s = to_string(num);
    for (int i = 0; i < s.size() - k + 1; ++i) {
      int t = stoi(s.substr(i, k));
      ans += t && num % t == 0;
    }
    return ans;
  }
};
func divisorSubstrings(num int, k int) int {
  ans := 0
  s := strconv.Itoa(num)
  for i := 0; i < len(s)-k+1; i++ {
    t, _ := strconv.Atoi(s[i : i+k])
    if t > 0 && num%t == 0 {
      ans++
    }
  }
  return ans
}
function divisorSubstrings(num: number, k: number): number {
  let ans = 0;
  const s = num.toString();
  for (let i = 0; i < s.length - k + 1; ++i) {
    const t = parseInt(s.substring(i, i + k));
    if (t !== 0 && num % t === 0) {
      ++ans;
    }
  }
  return ans;
}

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

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

发布评论

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