您的位置:首页 > 编程语言 > C语言/C++

Leetcode 233. Number of Digit One (Medium) (cpp)

2016-08-18 19:13 435 查看
Leetcode 233. Number of Digit One (Medium) (cpp)

Tag: Math

Difficulty: Medium

/*

233. Number of Digit One (Medium)

Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n.

For example:
Given n = 13,
Return 6, because digit 1 occurred in the following numbers: 1, 10, 11, 12, 13.

Hint:

Beware of overflow.

*/
class Solution {
public:
int countDigitOne(int n) {
int res = 0;
for (long long i = 1; i <= n; i *= 10) {
res += (n / i + 8) / 10 * i + (n / i % 10 == 1) * (n % i + 1);
}
return res;
}
};

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode cpp