The first time around I started writing all numbers with their squares and wasted time. Here's how I solved the second time:
You're adding the number and it's square and it must be a multiple of 100.
9 * 9 = 81 + 9 = 90 X
10 * 10 = 100 + 10 = 110 X
It must be greater than 100. But guessing which numbers to multiply next could be time consuming if you don't have tables memorized.
I now realized that
the units digits must add up to 0 for it to be a multiple of 100. Check units digits:
1 * 1 will have a units digit of 1. Adding 1 will give you a units digit of 2 which will not be divisible by 100.
Example: 21 * 21 = 441 and 441 + 21 = 462
Based on this, we see
the units digit of the original number must end in a 4, 5, or 9...4 * ...4 = ...6 + ...4 = ...0
...5 * ...5 = ...5 + ...5 = ...0
...9 * ...9 + ...1 + ...9 = ...0
With practice you'll get the feel for where to go next but if not, start with teens:
14 * 14 = 196 + 14 = 210
not a multiple of 10015 * 15 = 225 + 15 = 240
not a multiple of 100 19 * 19 = 361 + 19 = 380
not a multiple of 100 Now move onto the next tens digit (2) and repeat
24 * 24 = 576 + 24 = 600
E is your answer