301148: CF214B. Hometask

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Hometask

题意翻译

## 题目描述 给定 $n$ 个范围在 $[0,9]$ 的整数,求用这 $n$ 个数能拼出的被 $2,3,5$ 同时整除且没有前导 $0$ 的最大整数是多少?(可以不用完所有数字) ## 输入格式 第一行输入一个数 $n$。 第二行输入 $n$ 个数,代表你可以用的 $n$ 个数字。 ## 输出格式 输出你拼出的满足题意的最大数字,如果不存在任何数满足题意,则输出 $-1$。

题目描述

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.

输入输出格式

输入格式


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.

输出格式


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

输入输出样例

输入样例 #1

1
0

输出样例 #1

0

输入样例 #2

11
3 4 5 4 5 3 5 3 4 4 0

输出样例 #2

5554443330

输入样例 #3

8
3 2 5 1 5 2 2 3

输出样例 #3

-1

说明

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.

Input

题意翻译

## 题目描述 给定 $n$ 个范围在 $[0,9]$ 的整数,求用这 $n$ 个数能拼出的被 $2,3,5$ 同时整除且没有前导 $0$ 的最大整数是多少?(可以不用完所有数字) ## 输入格式 第一行输入一个数 $n$。 第二行输入 $n$ 个数,代表你可以用的 $n$ 个数字。 ## 输出格式 输出你拼出的满足题意的最大数字,如果不存在任何数满足题意,则输出 $-1$。

加入题单

上一题 下一题 算法标签: