zoukankan      html  css  js  c++  java
  • leetcode 507. Perfect Number

    We define the Perfect Number is a positive integer that is equal to the sum of all its positive divisors except itself.

    Now, given an integer n, write a function that returns true when it is a perfect number and false when it is not.
    Example:
    Input: 28
    Output: True
    Explanation: 28 = 1 + 2 + 4 + 7 + 14
    Note: The input number n will not exceed 100,000,000. (1e8)
    没啥好说的,直接求因子求和

    class Solution {
    public:
        bool checkPerfectNumber(int num) {
            vector<int> v;
            if (num == 1) return false; 
            v.push_back(1);
            for (int i = 2; i * i < num; ++i) {
                if (num % i == 0) {
                    v.push_back(i);
                    v.push_back(num / i);
                }
            }
            return (accumulate(v.begin(), v.end(), 0) == num);
        }
    };
    
  • 相关阅读:
    codechef BIBOARD
    Tree
    NOIWC2021总结
    星际穿越
    GDKOI总结
    lg4229
    P3320 [SDOI2015]寻宝游戏
    P6670 [清华集训2016] 汽水
    P6326 Shopping
    P3060 [USACO12NOV]Balanced Trees G
  • 原文地址:https://www.cnblogs.com/pk28/p/7591127.html
Copyright © 2011-2022 走看看