#3638. Color the fence

    ID: 3638 传统题 1000ms 128MiB 尝试: 0 已通过: 0 难度: (无) 上传者: 标签>进阶题-贪心算法贪心数学模拟字符串

Color the fence

Color the fence

题目描述

Tom has fallen in love with Mary. Now Tom wants to show his love and write a number on the fence opposite to 

Mary’s house. Tom thinks that the larger the numbers is, the more chance to win Mary’s heart he has.

Unfortunately, Tom could only get V liters paint. He did the math and concluded that digit i requires ai liters paint. 

Besides,Tom heard that Mary doesn’t like zero.That’s why Tom won’t use them in his number.

Help Tom find the maximum number he can write on the fence.

输入说明

There are multiple test cases.
Each case the first line contains a nonnegative integer V(0≤V≤10^6).
The second line contains nine positive integers a1,a2,……,a9(1≤ai≤10^5).

输出说明

Printf the maximum number Tom can write on the fence. If he has too little paint for any digit, print -1.

样例

输入

5
5 4 3 2 1 2 3 4 5
2
9 11 1 12 5 8 9 10 6

输出

55555
33