C - Iroha's Obsession Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 300

問題文

いろはちゃんはこだわりもので、嫌いな数字が K 個あり、それぞれ D_1, D_2, ..., D_K です。

いろはちゃんはお店でお買い物をしていて、 N 円の品物を買おうとしています。 もちろん、この品物は N 円以上のお金を支払えば買うことができます。 しかし、先ほど述べたようにいろはちゃんは強いこだわりがあるので、自分がお店に支払う金額の 10 進表記にいろはちゃんの嫌いな数字が出現しないような最も少ない金額を支払おうとします。

いろはちゃんが支払う金額を求めてください。

制約

  • 1 ≦ N < 10000
  • 1 ≦ K < 10
  • 0 ≦ D_1 < D_2 < … < D_K≦9
  • \{D_1,D_2,...,D_K\} ≠ \{1,2,3,4,5,6,7,8,9\}

入力

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

N K
D_1 D_2D_K

出力

いろはちゃんが支払う金額を出力せよ。


入力例 1

1000 8
1 3 4 5 6 7 8 9

出力例 1

2000

嫌いでない数字は 02 のみです。

N=1000 以上の整数で、桁に 02 のみが含まれる最小の整数は 2000 なのでそれを出力してください。


入力例 2

9999 1
0

出力例 2

9999

Score : 300 points

Problem Statement

Iroha is very particular about numbers. There are K digits that she dislikes: D_1, D_2, ..., D_K.

She is shopping, and now paying at the cashier. Her total is N yen (the currency of Japan), thus she has to hand at least N yen to the cashier (and possibly receive the change).

However, as mentioned before, she is very particular about numbers. When she hands money to the cashier, the decimal notation of the amount must not contain any digits that she dislikes. Under this condition, she will hand the minimum amount of money.

Find the amount of money that she will hand to the cashier.

Constraints

  • 1 ≦ N < 10000
  • 1 ≦ K < 10
  • 0 ≦ D_1 < D_2 < … < D_K≦9
  • \{D_1,D_2,...,D_K\} ≠ \{1,2,3,4,5,6,7,8,9\}

Input

The input is given from Standard Input in the following format:

N K
D_1 D_2D_K

Output

Print the amount of money that Iroha will hand to the cashier.


Sample Input 1

1000 8
1 3 4 5 6 7 8 9

Sample Output 1

2000

She dislikes all digits except 0 and 2.

The smallest integer equal to or greater than N=1000 whose decimal notation contains only 0 and 2, is 2000.


Sample Input 2

9999 1
0

Sample Output 2

9999