AcWing 1501. 回文数
原题链接
简单
作者:
代码怎么敲
,
2025-03-27 22:43:46
·河北
,
所有人可见
,
阅读 2
#include <iostream>
#include <algorithm>
using namespace std;
bool is_hw(string s){
string rs=s;
reverse(rs.begin(),rs.end());
return rs==s;
}
int main(){
string s;
cin >>s;
int k,n=0;
cin >> k;
while(true){
if(is_hw(s)) {cout << s <<endl<<n;break;}
else if(n==k) {cout << s <<endl<<n;break;}
else{
string res,t=s;
reverse(t.begin(),t.end());
int x=0;
for(int i=s.size()-1;i>=0;i--){
x+=(s[i]-'0')+(t[i]-'0');
res+=x%10+'0';
x/=10;
}
if(x) res+=x+'0';
s=res;
reverse(s.begin(),s.end());
n++;
}
}
return 0;
}