Submit | All submissions | Best solutions | Back to list |
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
|
||||||||||||||
2017-10-05 14:15:12
Remember to check 0/000002133000/9/ |
||||||||||||||
2017-10-05 02:36:28 Nguyễn Hoàng Nam
@prashant23: it just means you haven't checked deep enough. There can be really odd numbers which will cause really odd interaction. The example given by @theoden91 is a good one, try that. |
||||||||||||||
2017-10-01 20:45:10
I am getting all the cases correct in my system but still getting the wrong answer, anyone has any idea. Do test cases have leading zeros like 001 Last edit: 2017-10-01 20:47:36 |
||||||||||||||
2017-09-21 08:55:26
@deepjyoti30 If Online Judges start giving you an AC based on what you believe, almost everyone who had attempted this problem would have solved this problem. Not only this, questions is every Contest on every CP platform. You must be missing some corner cases or you are using 64 bit integer variable to calculate it. Like many have already said, it's not a straightforward brute-force solution. Check for corner cases like 9999999, 2939393 , etc. Try harder. Last edit: 2017-09-21 08:56:34 |
||||||||||||||
2017-09-20 17:42:32
Just submitted the solution. Working all right on my system but they marked it as wrong answer |
||||||||||||||
2017-09-17 13:25:00
How is it a string problem?My code is not working for large inputs.I used C lang and used unsigned long long for the numbers. |
||||||||||||||
2017-09-15 15:44:17
You need to treat it like a string instead of an integer. The problem is not defined properly. |
||||||||||||||
2017-09-13 09:56:55
Hope that can be useful. There are no leading zeros, so don't think about implementing that. Test input that I used: 9 0 1 9 99 12 808 2133 321123 94187978322 Correct output: 1 2 11 22 101 818 2222 322223 94188088149 |
||||||||||||||
2017-09-12 19:43:10
remember its just simple just use reverse function and plz dont forget new line |
||||||||||||||
2017-09-08 16:19:04 Simran Saha
There is a serious mistake in the output description here. Judge accepts solution with answers printed with space instead of newline. Finally AC |