zoukankan      html  css  js  c++  java
  • A. Jeff and Digits(cf)

    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 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 }
    View Code
  • 相关阅读:
    iOS开发——iOS10升级极光推送SDK、友盟分享SDK
    iOS动画——弹窗动画(pop动画)
    iOS动画——文字晃动
    iOS安全——代码混淆&反编译
    iOS学习——iOS视频和推荐网站
    iOS开发——消息推送跳转
    iOS开发——时间格式类
    iOS开发——锁屏监听
    iOS开发——毛玻璃透明
    iMAC——全新重装Mac系统
  • 原文地址:https://www.cnblogs.com/lahblogs/p/3352250.html
Copyright © 2011-2022 走看看