文章
5
粉丝
176
获赞
6
访问
25.5k
#include
#define IOS ios::sync_with_stdio(false);cin.tie(0);
#define x first
#define y second
#define all(x) x.begin(),x.end();using namespace std;
typedef pair PII;
int n;
bool check(int x){
string s = to_string(x);
// cout< int pr = 0;
for(int i = 0;i < s.size();i ++ ){
if(s[i] - '0' == pr) return false;
pr = s[i] - '0';
}
return true;
}
void solve(){
for(int i = n + 1; ;i ++ ){
if(check(i)){
cout< return ;
}
}
return ;
}
int main(){
while(cin >> n){
solve();
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发