PALIN - The Next Palindrome

A positive integer is called a palindrome if its representation in the decimal system is the same when read from left to right and from right to left. For a given positive integer K of not more than 1000000 digits, write the value of the smallest palindrome larger than K to output. Numbers are always displayed without leading zeros.

Input

The first line contains integer t, the number of test cases. Integers K are given in the next t lines.

Output

For each K, output the smallest palindrome larger than K.

Example

Input:
2
808
2133

Output:
818
2222

Warning: large Input/Output data, be careful with certain languages


Added by:adrian
Date:2004-05-01
Time limit:2s-9s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6

hide comments
2015-03-26 14:23:29 Ramesh
i'm using c#.code runs at Ideone.com, but when submit the solution, it gives runtime error.. Please provide the answer for it. I gave the input values in Ideone.com, when submit the solution there is no place to give the input values.. please give the reply for this.

Last edit: 2015-03-26 14:24:05
2015-03-23 20:35:17 Seven.Martinez
Got this using JAVA

Last edit: 2015-03-23 22:46:06
2015-03-16 21:05:20 copperfield
Great problem!
2015-03-16 16:03:32 RFarrell
Why aren't single digit numbers considered palindromes? They should be. Mine kept failing until I forced it to output 11 on any single digit.

From wikipedia (http://en.wikipedia.org/wiki/Palindromic_number): "All numbers in base 10 with one digit are palindromic".
2015-03-15 11:06:27 minhthai
very good problem :)
2015-03-07 21:58:12 Manish Mishra
I wrote the program and it works fine and gives the results as expected. But still when I submit it here, it says wrong answer.

I can think of the problem. How my program is going to be evaluated? I've assumed that input is entered and then enter key is pressed to get the result. How the inputs are going to be fed? More importantly, how should design my program to be properly fed testcases inputs in here? Please Help

Last edit: 2015-03-07 21:59:02
2015-03-07 11:04:12 Aditya Garg
i dont know why is it showing TLE
i gave the inputs myself they were fine
2015-03-05 13:30:14 Zishan Ahmad
Admin, I was getting TLE and then i read your comment that input does not end on new line. is that the case with individual input numbers as well ? i modified the program to include both new line as well as space to separate input numbers but still getting TLE
2015-03-04 16:30:05 palak bhatia
please indicate whats "wrong" with my answer submitted..since my all test cases are coming out to be correct...my not able to identify the problem

Last edit: 2015-03-04 16:30:42
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.