Smallest Greater Multiple Made of Two Digits - Problem
Given three integers k, digit1, and digit2, find the smallest integer that satisfies all of the following conditions:
- The integer is larger than k
- The integer is a multiple of k
- The integer is comprised of only the digits digit1 and/or digit2
Return the smallest such integer. If no such integer exists or the integer exceeds the limit of a signed 32-bit integer (2³¹ - 1 = 2147483647), return -1.
Input & Output
Example 1 — Basic Case
$
Input:
k = 2, digit1 = 1, digit2 = 2
›
Output:
12
💡 Note:
Numbers using digits 1,2: 1, 2, 11, 12, 21, 22... First number > 2 that's divisible by 2 is 12
Example 2 — Single Digit
$
Input:
k = 3, digit1 = 4, digit2 = 2
›
Output:
24
💡 Note:
Numbers using digits 4,2: 2, 4, 22, 24, 42, 44... First number > 3 divisible by 3 is 24 (2+4=6, divisible by 3)
Example 3 — No Solution
$
Input:
k = 2, digit1 = 3, digit2 = 5
›
Output:
-1
💡 Note:
All numbers made from digits 3,5 are odd, so none can be divisible by 2
Constraints
- 1 ≤ k ≤ 500
- 0 ≤ digit1 ≤ 9
- 0 ≤ digit2 ≤ 9
- digit1 ≠ digit2
Visualization
Tap to expand
Understanding the Visualization
1
Input
k=2, allowed digits: 1, 2
2
Generate
Build numbers using only digits 1 and 2
3
Check
Find first number > k that's divisible by k
Key Takeaway
🎯 Key Insight: Use BFS to systematically build numbers from allowed digits while tracking remainders to efficiently find multiples
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code