2022-03-27 18:35:17 +08:00
< p > Given an integer array < code > nums< / code > , return < em > the sum of divisors of the integers in that array that have exactly four divisors< / em > . If there is no such integer in the array, return < code > 0< / code > .< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< pre >
< strong > Input:< / strong > nums = [21,4,7]
< strong > Output:< / strong > 32
< strong > Explanation:< / strong >
21 has 4 divisors: 1, 3, 7, 21
4 has 3 divisors: 1, 2, 4
7 has 2 divisors: 1, 7
The answer is the sum of divisors of 21 only.
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< pre >
< strong > Input:< / strong > nums = [21,21]
< strong > Output:< / strong > 64
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 3:< / strong > < / p >
2022-03-27 18:35:17 +08:00
< pre >
< strong > Input:< / strong > nums = [1,2,3,4,5]
< strong > Output:< / strong > 0
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = nums.length < = 10< sup > 4< / sup > < / code > < / li >
< li > < code > 1 < = nums[i] < = 10< sup > 5< / sup > < / code > < / li >
< / ul >