#P13283. [GCJ 2013 Qualification] Fair and Square
[GCJ 2013 Qualification] Fair and Square
题目描述
Little John likes palindromes, and thinks them to be fair (which is a fancy word for nice). A is just an integer that reads the same backwards and forwards - so , and are all palindromes, while , , and are not (even though , we don't consider leading zeroes when determining whether a number is a palindrome).
He recently became interested in squares as well, and formed the definition of a number - it is a number that is a palindrome and the square of a palindrome at the same time. For instance, , and are fair and square (being palindromes and squares, respectively, of , and ), while , and are not fair and square: is not a palindrome, is not a square, and while is a palindrome and a square number, it is the square of , which is not a palindrome.
Now he wants to search for bigger fair and square numbers. Your task is, given an interval Little John is searching through, to tell him how many fair and square numbers are there in the interval, so he knows when he has found them all.
Usually, Google Code Jam problems have 1 Small input and 1 Large input. This problem has 1 Small input and 2 Large inputs. Once you have solved the Small input, you will be able to download any of the two Large inputs. As usual, you will be able to retry the Small input (with a time penalty), while you will get only one chance at each of the Large inputs.
输入格式
The first line of the input gives the number of test cases, . lines follow. Each line contains two integers, and - the endpoints of the interval Little John is looking at.
输出格式
For each test case, output one line containing "Case #: ", where is the case number (starting from ) and is the number of fair and square numbers greater than or equal to and smaller than or equal to .
3
1 4
10 120
100 1000
Case #1: 2
Case #2: 0
Case #3: 2
提示
Limits
Small dataset (10 Pts, Test set 1 - Visible)
First large dataset (35 Pts, Test set 2 - Hidden)
Second large dataset (55 Pts, Test set 3 - Hidden)