The Infinite Digit String — Solution & Editorial
Skip whole digit-length blocks (9 one-digit numbers, 90 two-digit, ...); land inside one number and index its decimal string.
Complexity: O(log K)
Watch out: Block boundaries (positions 9, 189, 2889, ...) are exactly where off-by-ones live — test them.