g0801_0900.s0829_consecutive_numbers_sum.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0801_0900.s0829_consecutive_numbers_sum;
// #Hard #Math #Enumeration
public class Solution {
public int consecutiveNumbersSum(int n) {
int ans = 0;
for (int i = 1; i * i <= n; i++) {
if (n % i > 0) {
continue;
}
int j = n / i;
if (i % 2 == 1) {
ans++;
}
if (j != i && j % 2 == 1) {
ans++;
}
}
return ans;
}
}