All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1301_1400.s1390_four_divisors.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package g1301_1400.s1390_four_divisors

// #Medium #Array #Math #2023_06_06_Time_255_ms_(100.00%)_Space_39.4_MB_(50.00%)

class Solution {
    fun sumFourDivisors(nums: IntArray): Int {
        var sum = 0
        for (num in nums) {
            val sqrt = Math.sqrt(num.toDouble()).toInt()
            if (sqrt * sqrt == num) {
                continue
            }
            var tmpSum = num + 1
            var count = 0
            for (i in 2..sqrt) {
                if (num % i == 0) {
                    count++
                    tmpSum += i + num / i
                }
                if (count > 1) {
                    break
                }
            }
            if (count == 1) {
                sum += tmpSum
            }
        }
        return sum
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy