返回介绍

solution / 0400-0499 / 0400.Nth Digit / README_EN

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

400. Nth Digit

中文文档

Description

Given an integer n, return the nth digit of the infinite integer sequence [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ...].

 

Example 1:

Input: n = 3
Output: 3

Example 2:

Input: n = 11
Output: 0
Explanation: The 11th digit of the sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... is a 0, which is part of the number 10.

 

Constraints:

  • 1 <= n <= 231 - 1

Solutions

Solution 1

class Solution:
  def findNthDigit(self, n: int) -> int:
    k, cnt = 1, 9
    while k * cnt < n:
      n -= k * cnt
      k += 1
      cnt *= 10
    num = 10 ** (k - 1) + (n - 1) // k
    idx = (n - 1) % k
    return int(str(num)[idx])
class Solution {
  public int findNthDigit(int n) {
    int k = 1, cnt = 9;
    while ((long) k * cnt < n) {
      n -= k * cnt;
      ++k;
      cnt *= 10;
    }
    int num = (int) Math.pow(10, k - 1) + (n - 1) / k;
    int idx = (n - 1) % k;
    return String.valueOf(num).charAt(idx) - '0';
  }
}
class Solution {
public:
  int findNthDigit(int n) {
    int k = 1, cnt = 9;
    while (1ll * k * cnt < n) {
      n -= k * cnt;
      ++k;
      cnt *= 10;
    }
    int num = pow(10, k - 1) + (n - 1) / k;
    int idx = (n - 1) % k;
    return to_string(num)[idx] - '0';
  }
};
func findNthDigit(n int) int {
  k, cnt := 1, 9
  for k*cnt < n {
    n -= k * cnt
    k++
    cnt *= 10
  }
  num := int(math.Pow10(k-1)) + (n-1)/k
  idx := (n - 1) % k
  return int(strconv.Itoa(num)[idx] - '0')
}
/**
 * @param {number} n
 * @return {number}
 */
var findNthDigit = function (n) {
  let k = 1,
    cnt = 9;
  while (k * cnt < n) {
    n -= k * cnt;
    ++k;
    cnt *= 10;
  }
  const num = Math.pow(10, k - 1) + (n - 1) / k;
  const idx = (n - 1) % k;
  return num.toString()[idx];
};
public class Solution {
  public int FindNthDigit(int n) {
    int k = 1, cnt = 9;
    while ((long) k * cnt < n) {
      n -= k * cnt;
      ++k;
      cnt *= 10;
    }
    int num = (int) Math.Pow(10, k - 1) + (n - 1) / k;
    int idx = (n - 1) % k;
    return num.ToString()[idx] - '0';
  }
}

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

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

发布评论

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