文章

5

粉丝

176

获赞

6

访问

25.5k

头像
简单模拟
P1887 武汉大学机试题
发布于2022年12月6日 10:22
阅读数 4.3k

#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;
}

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发