题解 | #完全数计算#

完全数计算

http://www.nowcoder.com/practice/7299c12e6abb437c87ad3e712383ff84

while True:
    try:
        n = int(input())
        count = 0
        for i in range(1, n+1):
            temp = []
            for j in range(1, i):
                if i % j == 0:
                    temp.append(j)
            if sum(temp) == i:
                count += 1
        print(count)
    except:
        break
全部评论

相关推荐

Noob1024:一笔传三代,人走笔还在
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务