CSAT Solved Papers/ 2025/Q48

2025 CSAT — Q48

Quant Number theory 2.5 marks Hard

What is the 489th489^{\text{th}} digit in the number 123456789101112123456789101112\ldots?

  1. A 0
  2. B 3
  3. C 6
  4. D 9 Answer

Worked rationale

The string concatenates 1,2,3,1, 2, 3, \dots. Count digits block by block (by number length):

  • 11-digit numbers 1199: 99 numbers ×1=9\times 1 = 9 digits (positions 1199).
  • 22-digit numbers 10109999: 90×2=18090 \times 2 = 180 digits (positions 1010189189).

After 9999 we have used 189189 digits. The target is position 489489, so we are 489189=300489 - 189 = 300 digits into the 33-digit block (starting at 100100).

300÷3=100 exactlythe 100th three-digit number ends at position 489.300 \div 3 = 100 \text{ exactly} \Rightarrow \text{the } 100^{\text{th}} \text{ three-digit number ends at position } 489.

The 100th100^{\text{th}} three-digit number is 100+99=199100 + 99 = 199, and "199199" occupies positions 487,488,489487, 488, 489. The 489th489^{\text{th}} digit is its last digit, 99.

Answer: (d) 9.

Why the other options miss

  • A
    counted one too many: lands on the digit right after 199199 (the "00" of 200200 at position 490490), overshooting by one position.
  • B
    an arithmetic slip: mis-subtracts the cumulative count (e.g. uses 190190 instead of 189189 before the 33-digit block), shifting into the wrong number’s digit.
  • C
    counted one too many: places 300/3=100300/3 = 100 as the 100th100^{\text{th}} number being 100100 (an off-by-one in indexing), reading a wrong digit.

Specialist insight

These “nn-th digit of 123456789101112123456789101112\dots” items are pure block accounting: tally 91,902,9003,9\cdot1, 90\cdot2, 900\cdot3, \dots digits and subtract until the remaining count lands inside a block. The two fence-post hazards are (i) the running total before the 33-digit block is 9+180=1899 + 180 = 189, not 190190, and (ii) the kk-th 33-digit number is 99+k99 + k, not 100+k100 + k. Here 300300 divides evenly by 33, so the position is the last digit of the 100th100^{\text{th}} three-digit number 199199 — a clean boundary that the off-by-one distractors (a)/(c) are built to catch. Carry the cumulative counts explicitly and index from the right block.

The trap, in one line

After 189189 digits (119999), 300300 more =100= 100 three-digit numbers exactly, ending on the last digit of 199199 \to 99; one step off gives the "00" of 200200.

← All 2025 CSAT questions