题解 | #挑7#

挑7

http://www.nowcoder.com/practice/ba241b85371c409ea01ac0aa1a8d957b

list1 = []
n = 30000
for i in range(1,n+1):
    if '7' in list(str(i)):
        list1.append(i)
    if i%7 == 0 and i not in list1:
        list1.append(i)
list1 = sorted(list1)
import bisect
while 1:
    try:
        a = int(input())
        print(bisect.bisect(list1,a))
    except:
        break
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务