https://beta.atcoder.jp/contests/abc111/tasks/abc111_b
解法
https://beta.atcoder.jp/contests/abc111/submissions/3304064
xを全探索して、すべての桁の数が同じ最小の数を出力すればいい。
すべての桁の数が同じ数の条件は111の倍数であることである。
int N; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; rep(x, N, 1000) if (x % 111 == 0) { cout << x << endl; return; } }