3461.Jeff and Digits

Time Limit: 1s Memory Limit: 256MB

Jeff's got n cards, each card contains either digit 0, or digit 5. Jeff can choose several cards and put them in a line so that he gets some number. What is the largest possible number divisible by 90 Jeff can make from the cards he's got?

Jeff must make the number without leading zero. At that, we assume that number 0 doesn't contain any leading zeroes. Jeff doesn't have to use all the cards.

Input Format(From the terminal/stdin)

The first line contains integer n (1 \le n \le 103). The next line contains n integers a1, a2, ..., an (ai=0 or ai=5). Number ai represents the digit that is written on the i-th card.

Output Format(To the terminal/stdout)

In a single line print the answer to the problem - the maximum number, divisible by 90. If you can't make any divisible by 90 number from the cards, print -1.

Sample Input 1

Copy
4
5 0 5 0
 \n
 · · · \n

Sample Output 1

Copy
0
 \n

Sample Input 2

Copy
11
5 5 5 5 5 5 5 5 0 5 5
  \n
 · · · · · · · · · · \n

Sample Output 2

Copy
5555555550
          \n

Hints

In the first test you can make only one number that is a multiple of 90 - 0.

In the second test you can make number 5555555550, it is a multiple of 90.

Submit

请先 登录

© 2025 FAQs