题解 | 挑7

挑7

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

n = input()
str_list = [str(x) for x in range(int(n)+1)]
int_list = [int(x) for x in range(int(n)+1)]
record =[] 
# 注意到字符串会把只由7组成的数字本身又算一次,还得让字符串不能是已经数过的7的倍数
count = 0 
for i in int_list:
    if i > 0:
        if i % 7 == 0:
            count += 1
            record.append(str(i))
for j in str_list:
    if j not in record: 
        if '7' in j:
            count += 1
print(count)

















全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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