@@ -46,17 +46,101 @@ The first six palindromes of length 4 are:
46
46
### ** Python3**
47
47
48
48
``` python
49
-
49
+ class Solution :
50
+ def kthPalindrome (self , queries : List[int ], intLength : int ) -> List[int ]:
51
+ l = (intLength + 1 ) >> 1
52
+ start, end = 10 ** (l - 1 ), 10 ** l - 1
53
+ ans = []
54
+ for q in queries:
55
+ v = start + q - 1
56
+ if v > end:
57
+ ans.append(- 1 )
58
+ continue
59
+ s = str (v)
60
+ s += s[::- 1 ][intLength % 2 :]
61
+ ans.append(int (s))
62
+ return ans
50
63
```
51
64
52
65
### ** Java**
53
66
54
67
``` java
68
+ class Solution {
69
+ public long [] kthPalindrome (int [] queries , int intLength ) {
70
+ int n = queries. length;
71
+ long [] ans = new long [n];
72
+ int l = (intLength + 1 ) >> 1 ;
73
+ long start = (long ) Math . pow(10 , l - 1 );
74
+ long end = (long ) Math . pow(10 , l) - 1 ;
75
+ for (int i = 0 ; i < n; ++ i) {
76
+ long v = start + queries[i] - 1 ;
77
+ if (v > end) {
78
+ ans[i] = - 1 ;
79
+ continue ;
80
+ }
81
+ String s = " " + v;
82
+ s += new StringBuilder (s). reverse(). substring(intLength % 2 );
83
+ ans[i] = Long . parseLong(s);
84
+ }
85
+ return ans;
86
+ }
87
+ }
88
+ ```
55
89
90
+ ### ** C++**
91
+
92
+ ``` cpp
93
+ class Solution {
94
+ public:
95
+ vector<long long > kthPalindrome(vector<int >& queries, int intLength) {
96
+ int l = (intLength + 1) >> 1;
97
+ long long start = pow(10, l - 1), end = pow(10, l) - 1;
98
+ vector<long long > ans;
99
+ for (int& q : queries)
100
+ {
101
+ long long v = start + q - 1;
102
+ if (v > end)
103
+ {
104
+ ans.push_back(-1);
105
+ continue;
106
+ }
107
+ string s = to_string(v);
108
+ string s1 = s;
109
+ reverse(s1.begin(), s1.end());
110
+ s += s1.substr(intLength % 2);
111
+ ans.push_back(stoll(s));
112
+ }
113
+ return ans;
114
+ }
115
+ };
56
116
```
57
117
58
- <!-- tabs:end -->
59
- <!-- tabs:end -->
118
+ ### **Go**
119
+
120
+ ```go
121
+ func kthPalindrome(queries []int, intLength int) []int64 {
122
+ l := (intLength + 1) >> 1
123
+ start, end := int(math.Pow10(l-1)), int(math.Pow10(l))-1
124
+ var ans []int64
125
+ for _, q := range queries {
126
+ v := start + q - 1
127
+ if v > end {
128
+ ans = append(ans, -1)
129
+ continue
130
+ }
131
+ t := v
132
+ if intLength%2 == 1 {
133
+ t /= 10
134
+ }
135
+ for t > 0 {
136
+ v = v*10 + t%10
137
+ t /= 10
138
+ }
139
+ ans = append(ans, int64(v))
140
+ }
141
+ return ans
142
+ }
143
+ ```
60
144
61
145
### ** TypeScript**
62
146
0 commit comments