题解 | #完全数计算#

完全数计算

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

import sys

num = int(input())
count = 0


for i in range(1, num + 1):
    n = []
    for yinzi in range(1, i):
        if i % yinzi == 0:
            n.append(yinzi)
    total = 0
    for j in n:
        total += int(j)
    if total == i:
        count += 1
print(count)

全部评论

相关推荐

06-26 15:35
武汉大学 运营
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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