跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2733. Hometask

    ID: 2739 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>枚举构造贪心数学算法思想进阶难度共享题库Codeforces英文题面题目来源题面语言

Hometask

题目描述

B. Hometask
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immediately. Can you?

You are given a set of digits, your task is to find the maximum integer that you can make from these digits. The made number must be divisible by 2, 3, 5 without a residue. It is permitted to use not all digits from the set, it is forbidden to use leading zeroes.

Each digit is allowed to occur in the number the same number of times it occurs in the set.

Input

A single line contains a single integer n (1≤n≤100000) − the number of digits in the set. The second line contains n digits, the digits are separated by a single space.

Output

On a single line print the answer to the problem. If such number does not exist, then you should print -1.

Examples
Input
1
0
Output
0
Input
11
3 4 5 4 5 3 5 3 4 4 0
Output
5554443330
Input
8
3 2 5 1 5 2 2 3
Output
-1
Note

In the first sample there is only one number you can make − 0. In the second sample the sought number is 5554443330. In the third sample it is impossible to make the required number.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2400 题。保留原作者与原赛事署名。