31.整数中1出现的次数(从1到n整数中1出现的次数)
Posted npc-assange
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了31.整数中1出现的次数(从1到n整数中1出现的次数)相关的知识,希望对你有一定的参考价值。
题目描述
求出1~13的整数中1出现的次数,并算出100~1300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他就没辙了。ACMer希望你们帮帮他,并把问题更加普遍化,可以很快的求出任意非负整数区间中1出现的次数(从1 到 n 中1出现的次数)。
highValue == 0 退出
1 # -*- coding:utf-8 -*- 2 class Solution: 3 def NumberOf1Between1AndN_Solution(self, n): 4 # write code here 5 precise = 1 6 lowValue = 1 7 highValue=1 8 midValue=1 9 sumNum = 0 10 num = 0 11 count = 0 12 while highValue!=0: 13 highValue = n // (precise*10) 14 midValue = n // (precise) % 10 15 lowValue = n % (precise) 16 precise = precise*10 17 18 if midValue == 0: 19 num = (highValue-1+1)*pow(10,count) 20 elif midValue > 1: 21 num = (highValue+1)*pow(10,count) 22 else: 23 num = highValue*pow(10,count)+lowValue+1 24 sumNum += num 25 count += 1 26 return sumNum
2019-12-21 21:07:12
以上是关于31.整数中1出现的次数(从1到n整数中1出现的次数)的主要内容,如果未能解决你的问题,请参考以下文章
剑指 Offer JZ31 整数中1出现的次数(从1到n整数中1出现的次数)
剑指offer-整数中1出现的次数(从1到n整数中1出现的次数)