Codeforence 352A

A. Jeff and Digits
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 ai represents 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 test(s)
input
4
5 0 5 0
output
0
input
11
5 5 5 5 5 5 5 5 0 5 5
output
5555555550
Note

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.


这个题目是说在里面选择5,0组成数,使其最大才可以,为了能够可以让它被90除尽,必须包含0,然后五的数目相加

只要可以被9的整除就可以,从5最多的数目开始递减,然后遍历是否可以整除,若可以,则证明是行的。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
    int i,j,k,n;
    int num[1100];
    while(scanf("%d",&n)!=EOF)
    {

        for(i=0;i<n;i++)
        {
            scanf("%d",&num[i]);
        }
        int a,b;//a 5 b 0
        a=0;
        b=0;
        for(i=0;i<n;i++)
        {
            if(num[i]==5)
            a++;
            else
            b++;
        }
        if(b==0)
        {
            printf("-1\n");
            continue;

        }
        int c;
        int flag=0;
        for(i=a;i>=1;i--)
        {
            int sum=i*5;
           // printf("sssss  %d\n",sum);
            if(sum%9==0)
            {
               // printf("%d   fdfsfddfd\n",sum);
                c=i;
                //printf("fjdskljflsd");
                flag=1;
                break;

            }
        }
        if(flag==0)
        {
            c=0;
        }
        //printf("hhhhh  %d\n",c);
        for(i=1;i<=c;i++)
        {


            printf("5");

        }
        if(c==0)
        {
            printf("0\n");
            continue;
        }
        for(i=1;i<=b;i++)
        {
            printf("0");
        }
        printf("\n");
    }



    return 0;
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值