#include <iostream>
using namespace std;
int a[10], res;
int main(void) {
while (++res) {
auto t = res;
while (t) {
int bit = t % 10;
a[bit] ++;
if (a[bit] == 2022) {
cout << res - 1;
return 0;
}
t /= 10;
}
}
}
0 回复
0 转发
1 喜欢
10 阅读



