fork download
  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. import java.math.BigInteger;
  5.  
  6. class Main {
  7.  
  8. public static void main(String[] args) throws NumberFormatException, IOException {
  9. int t = Integer.parseInt(br.readLine());
  10. while (t-- > 0) {
  11. String s = br.readLine();
  12. s = s.trim();
  13. if(s.charAt(0) == '0') {
  14. while(s.charAt(0) == '0')
  15. s = s.substring(1);
  16. }
  17. if (all9(s)) {
  18. BigInteger b = new BigInteger(s);
  19. b = b.add(new BigInteger("2"));
  20. System.out.print(b);
  21. continue;
  22.  
  23. }
  24. int i = 0, j = s.length() - 1;
  25.  
  26. int mid = (i + j) / 2;
  27.  
  28. String f = s.substring(0, mid + 1);
  29. String rev = rev((s.length() % 2 == 0) ? s.substring(0, mid + 1) : s.substring(0, mid));
  30.  
  31. String ans = f + rev;
  32.  
  33. while (ans.compareTo(s) <= 0) {
  34. ans = big(ans);
  35. }
  36.  
  37. System.out.println(ans);
  38.  
  39. }
  40.  
  41. }
  42.  
  43. private static boolean all9(String s) {
  44. // TODO Auto-generated method stub
  45. int i = 0;
  46. while (i < s.length()) {
  47. if (s.charAt(i) != '9')
  48. return false;
  49. i++;
  50. }
  51. return true;
  52. }
  53.  
  54. private static String big(String ans) {
  55. int mid = ans.length() / 2;
  56. String s = "";
  57. String f = "";
  58. if (ans.length() % 2 == 0) {
  59. f = ans.substring(0, mid);
  60. } else {
  61. f = ans.substring(0, mid + 1);
  62. }
  63. BigInteger b = new BigInteger(f);
  64. b = b.add(new BigInteger("1"));
  65. s = s + b;
  66. String rev = rev((ans.length() % 2 == 0) ? s : s.substring(0, mid));
  67. ans = s + rev;
  68.  
  69. return ans;
  70. }
  71.  
  72. private static String rev(String s) {
  73. // TODO Auto-generated method stub
  74. return new StringBuilder(s).reverse().toString();
  75. }
  76.  
  77. }
Success #stdin #stdout 0.04s 2184192KB
stdin
8
97795375756122352572879826552151654387112262
1892388497169516734992356528466
19891859448286167812
47737795782241879811566697829238862994263278849942632926438725
857751275744476297149515661
699
5119783738665448121162642286
4177118624313412937235746451
stdout
97795375756122352572888827525322165757359779
1892388497169517159617948832981
19891859455495819891
47737795782241879811566697829244292879666511897814228759773774
857751275744484447572157758
707
5119783738665555668373879115
4177118624313443134268117714