Smallest Integer Divisible by K
Description
Given a positive integer K
, you need find the smallest positive integer N
such that N
is divisible by K
, and N
only contains the digit 1.
Return the length of N
. If there is no such N
, return -1.
Example 1:
Example 2:
Example 3:
Note:
1 <= K <= 10^5
Solution
If K is not divisible by 2 or 5, there must be a number N in the form 1111...1 such that K divides N and N 111...1(K ones).
Last updated