题解 | #挑7#

挑7

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

import sys
while True:
    try:
        N = int(input()) + 1
        count = 0
        for i in range(1,N):
            #直接判断是否整除7或者包含7
            if i % 7 == 0 or '7' in str(i):
                count += 1
        print(count)

    except:
        break












全部评论

相关推荐

评论
1
收藏
分享

创作者周榜

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