#ABC118D. [ABC118D] Match Matching

[ABC118D] Match Matching

Score : 400400 points

Problem Statement

Find the largest integer that can be formed with exactly NN matchsticks, under the following conditions:

  • Every digit in the integer must be one of the digits A1,A2,...,AM(1Ai9)A_1, A_2, ..., A_M (1 \leq A_i \leq 9).
  • The number of matchsticks used to form digits 1,2,3,4,5,6,7,8,91, 2, 3, 4, 5, 6, 7, 8, 9 should be 2,5,5,4,5,6,3,7,62, 5, 5, 4, 5, 6, 3, 7, 6, respectively.

Constraints

  • All values in input are integers.
  • 2N1042 \leq N \leq 10^4
  • 1M91 \leq M \leq 9
  • 1Ai91 \leq A_i \leq 9
  • AiA_i are all different.
  • There exists an integer that can be formed by exactly NN matchsticks under the conditions.

Input

Input is given from Standard Input in the following format:

NN MM

A1A_1 A2A_2 ...... AMA_M

Output

Print the largest integer that can be formed with exactly NN matchsticks under the conditions in the problem statement.

20 4
3 7 8 4
777773

The integer 777773777773 can be formed with 3+3+3+3+3+5=203 + 3 + 3 + 3 + 3 + 5 = 20 matchsticks, and this is the largest integer that can be formed by 2020 matchsticks under the conditions.

101 9
9 8 7 6 5 4 3 2 1
71111111111111111111111111111111111111111111111111

The output may not fit into a 6464-bit integer type.

15 3
5 4 6
654