A. Jeff and Digits
time limit per test
1 secondmemory limit per test
256 megabytesinput
standard inputoutput
standard outputJeff'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 a1, a2, ..., 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
1 #include <cstdio> 2 #include <iostream> 3 using namespace std; 4 int main() 5 { 6 int n,x; 7 while(~scanf("%d",&n)) 8 { 9 int cnt5 = 0,cnt0 = 0,max = 0; 10 while(n--) 11 { 12 scanf("%d",&x); 13 if (x==5) 14 cnt5++; 15 else 16 cnt0++; 17 if(cnt5%9==0&&cnt5)//能被9整除的数其各位数之和是9的倍数,故5的个数应是9的倍数 18 { 19 if (cnt5 > max) 20 max = cnt5; 21 } 22 } 23 if (cnt0==0)//能被90整除的数末尾必含0 24 puts("-1"); 25 else if (!max)//若5的个数小于9个且cnt0!=0,则最大的数为0 26 puts("0"); 27 else 28 { 29 while(max--) 30 cout<<"5"; 31 while(cnt0--) 32 cout<<"0"; 33 puts(""); 34 } 35 36 } 37 return 0; 38 }