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
hide comments
pust_coder:
2017-12-28 11:04:14
what is wrong of this problem??please ans me,,
|
|
nadstratosfer:
2017-12-23 23:55:15
TL is very lenient by SPOJ standards, and friendly for slower languages. I even got AC with a hastily put together semi-bruteforce in 3.45s while a proper solution took 0.05s. Good problem for beginners to learn about efficiency of very common operations and pick up some good practices. |
|
ystm:
2017-12-22 17:01:36
I wrote same algorithm in python and rust, but only rust passed. If you've got TLE in slow language, consider to choose another faster one. |
|
bigbrobd:
2017-12-21 22:28:48
Following test cases r correct..
|
|
snitesh24:
2017-12-13 20:14:48
Accepted after passing below testcases..
|
|
aar_em:
2017-12-12 14:19:41
It works for manually entered inputs, why does it show here wrong answer? |
|
saikumarm4:
2017-12-05 14:33:45
how does Wrong answer is decided ? Does it consider time and space complexity also ? or only after looking at the test cases ?@prothlete even I am facing same issue, did you by any chance resolved it ? it works in my IDE and fails online Last edit: 2017-12-05 17:31:11 |
|
code_killerx:
2017-12-04 06:28:56
Getting a WA in this code don't know why pls help https://ideone.com/4t9xJa |
|
techventer_936:
2017-11-30 23:55:21
consider special cases and for all other logic is same.
|
|
w1583236:
2017-11-29 06:31:57
what about 19199192 |
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 |