CodeForces 352A Jeff and Digits

Description

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

The first line contains integer n(1 ≤ n ≤ 103). The next line contains n integers a1a2...an (ai = 0 or ai = 5). Number airepresents the digit that is written on the i-th card.

Output

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

Input
4
5 0 5 0
Output
0
Input
11
5 5 5 5 5 5 5 5 0 5 5
Output
5555555550
 
   
这个题有规律的:由于输入的数字中只有0和5两个数字,所以若是能整除90,则末尾必有一个0,而且几个5才能整除90呢,当然最少为9个5,则能整除90的5的个数必是9的倍数,这就是题眼所在,所以只需判断0的个数>=1,5的个数>=n*9;
#include <iostream>
using namespace std;

int main()
{
    int n;
    int a[1005];
    int num5,num0,flag;
    while(cin>>n)
    {
        num5 = 0;
        num0 = 0;
        for(int i = 0; i<n; i++)
        {
            cin>>a[i];
            if(a[i] == 5)
                num5++;
            else if(a[i] == 0)
                num0++;
        }
        flag = num5/9;//5的个数必须是9的倍数
        if(!num0)//必须含有0最好因为为0
            cout<<"-1"<<endl;
        else
        {
            if(flag)
            {
                for(int i = 0; i<flag*9; i++)
                    cout<<"5";
                for(int i = 0; i<num0; i++)
                    cout<<"0";
            }
            else
                cout<<"0";//最后一位必须为0
            cout<<endl;
        }
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值