Overflow in intermediate arithmetic
Wrong move: Temporary multiplications exceed integer bounds.
Usually fails on: Large inputs wrap around unexpectedly.
Fix: Use wider types, modular arithmetic, or rearranged operations.
Move from brute-force thinking to an efficient approach using math strategy.
Given an integer num, find the closest two integers in absolute difference whose product equals num + 1 or num + 2.
Return the two integers in any order.
Example 1:
Input: num = 8 Output: [3,3] Explanation: For num + 1 = 9, the closest divisors are 3 & 3, for num + 2 = 10, the closest divisors are 2 & 5, hence 3 & 3 is chosen.
Example 2:
Input: num = 123 Output: [5,25]
Example 3:
Input: num = 999 Output: [40,25]
Constraints:
1 <= num <= 10^9Problem summary: Given an integer num, find the closest two integers in absolute difference whose product equals num + 1 or num + 2. Return the two integers in any order.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Math
8
123
999
distinct-prime-factors-of-product-of-array)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #1362: Closest Divisors
class Solution {
public int[] closestDivisors(int num) {
int[] a = f(num + 1);
int[] b = f(num + 2);
return Math.abs(a[0] - a[1]) < Math.abs(b[0] - b[1]) ? a : b;
}
private int[] f(int x) {
for (int i = (int) Math.sqrt(x);; --i) {
if (x % i == 0) {
return new int[] {i, x / i};
}
}
}
}
// Accepted solution for LeetCode #1362: Closest Divisors
func closestDivisors(num int) []int {
f := func(x int) []int {
for i := int(math.Sqrt(float64(x))); ; i-- {
if x%i == 0 {
return []int{i, x / i}
}
}
}
a, b := f(num+1), f(num+2)
if abs(a[0]-a[1]) < abs(b[0]-b[1]) {
return a
}
return b
}
func abs(x int) int {
if x < 0 {
return -x
}
return x
}
# Accepted solution for LeetCode #1362: Closest Divisors
class Solution:
def closestDivisors(self, num: int) -> List[int]:
def f(x):
for i in range(int(sqrt(x)), 0, -1):
if x % i == 0:
return [i, x // i]
a = f(num + 1)
b = f(num + 2)
return a if abs(a[0] - a[1]) < abs(b[0] - b[1]) else b
// Accepted solution for LeetCode #1362: Closest Divisors
struct Solution;
impl Solution {
fn closest_divisors(num: i32) -> Vec<i32> {
for i in (0..=((num + 2) as f64).sqrt() as i32).rev() {
if (num + 1) % i == 0 {
return vec![(num + 1) / i, i];
}
if (num + 2) % i == 0 {
return vec![(num + 2) / i, i];
}
}
vec![]
}
}
#[test]
fn test() {
let num = 8;
let res = vec![3, 3];
assert_eq!(Solution::closest_divisors(num), res);
let num = 123;
let res = vec![25, 5];
assert_eq!(Solution::closest_divisors(num), res);
let num = 999;
let res = vec![40, 25];
assert_eq!(Solution::closest_divisors(num), res);
}
// Accepted solution for LeetCode #1362: Closest Divisors
// Auto-generated TypeScript example from java.
function exampleSolution(): void {
}
// Reference (java):
// // Accepted solution for LeetCode #1362: Closest Divisors
// class Solution {
// public int[] closestDivisors(int num) {
// int[] a = f(num + 1);
// int[] b = f(num + 2);
// return Math.abs(a[0] - a[1]) < Math.abs(b[0] - b[1]) ? a : b;
// }
//
// private int[] f(int x) {
// for (int i = (int) Math.sqrt(x);; --i) {
// if (x % i == 0) {
// return new int[] {i, x / i};
// }
// }
// }
// }
Use this to step through a reusable interview workflow for this problem.
Simulate the process step by step — multiply n times, check each number up to n, or iterate through all possibilities. Each step is O(1), but doing it n times gives O(n). No extra space needed since we just track running state.
Math problems often have a closed-form or O(log n) solution hidden behind an O(n) simulation. Modular arithmetic, fast exponentiation (repeated squaring), GCD (Euclidean algorithm), and number theory properties can dramatically reduce complexity.
Review these before coding to avoid predictable interview regressions.
Wrong move: Temporary multiplications exceed integer bounds.
Usually fails on: Large inputs wrap around unexpectedly.
Fix: Use wider types, modular arithmetic, or rearranged operations.