B - AtCoder Beginner Contest 111 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 200200

問題文

黒橋君は,AtCoder Beginner Contest (ABC) にまだ参加したことがありません.

次に行われる ABC は第 NN 回です. 黒橋君は,初めて参加する ABC を第 xx 回としたときに,xx の十進法表記でのすべての桁の数字が同じであるようにしたいです.

黒橋君が初めて参加する ABC としてふさわしいもののうち,最も早いものは第何回でしょうか?

制約

  • 100N999100 \leq N \leq 999
  • NN は整数

入力

入力は以下の形式で標準入力から与えられる.

NN

出力

黒橋君が初めて参加する ABC としてふさわしいもののうち,最も早いものは第何回かを出力せよ.


入力例 1Copy

Copy
111

出力例 1Copy

Copy
111

次に行われる ABC は第 111111 回です. これは黒橋君が初めて参加する ABC としてふさわしいです.


入力例 2Copy

Copy
112

出力例 2Copy

Copy
222

次に行われる ABC は第 112112 回です.そのため,第 111111 回の ABC にはもう参加することはできません. 黒橋君が初めて参加する ABC としてふさわしいもののうち,最も早いものは第 222222 回です.


入力例 3Copy

Copy
750

出力例 3Copy

Copy
777

Score : 200200 points

Problem Statement

Kurohashi has never participated in AtCoder Beginner Contest (ABC).

The next ABC to be held is ABC NN (the NN-th ABC ever held). Kurohashi wants to make his debut in some ABC xx such that all the digits of xx in base ten are the same.

What is the earliest ABC where Kurohashi can make his debut?

Constraints

  • 100N999100 \leq N \leq 999
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

If the earliest ABC where Kurohashi can make his debut is ABC nn, print nn.


Sample Input 1Copy

Copy
111

Sample Output 1Copy

Copy
111

The next ABC to be held is ABC 111111, where Kurohashi can make his debut.


Sample Input 2Copy

Copy
112

Sample Output 2Copy

Copy
222

The next ABC to be held is ABC 112112, which means Kurohashi can no longer participate in ABC 111111. Among the ABCs where Kurohashi can make his debut, the earliest one is ABC 222222.


Sample Input 3Copy

Copy
750

Sample Output 3Copy

Copy
777


2025-04-06 (Sun)
04:01:05 +00:00