数学题 找规律

1 篇文章 0 订阅
C - C
Time Limit:2000MS    Memory Limit:262144KB    64bit IO Format:%I64d & %I64u

Description

Drazil is playing a math game with Varda.

Let's define for positive integerx as a product of factorials of its digits. For example,.

First, they choose a decimal number a consisting ofn digits that contains at least one digit larger than1. This number may possibly start with leading zeroes. Then they should find maximum positive numberx satisfying following two conditions:

1. x doesn't contain neither digit 0 nor digit 1.

2. =.

Help friends find such number.

Input

The first line contains an integer n (1 ≤ n ≤ 15) — the number of digits ina.

The second line contains n digits of a. There is at least one digit in a that is larger than1. Number a may possibly contain leading zeroes.

Output

Output a maximum possible integer satisfying the conditions above. There should be no zeroes and ones in this number decimal representation.

Sample Input

Input
4
1234
Output
33222
Input
3
555
Output
555

Hint

In the first case,



//@auther yangZongJun
/********************************************//**
Date  : 2014/03/08
题目来源:
题    意:
解题思路:找规律
        从2!~9!开始分解,分出尽可能多的位数
        2! 2!
        3! 3!
        4! 3!*(2*2!)
        5! 5!(因为有5就无法分解了)
        6! 5!*(3!)
        7! 7!
        8! 7!*(3*2!)
        9! 7!*(2*3! * 1*2!)
        这样分解出尽可能多的位数后就可以从大到小的输出最大的数了
 ***********************************************/
#include <iostream>
#include <cstdio>
#include <string>
#include <string.h>
using namespace std;

int n;
string s;
int arr[8];
const int INF = 2100000000;

int main()
{
//    freopen("input.txt", "r", stdin);
    while(~scanf("%d", &n))
    {
        getchar();
        cin >> s;
        memset(arr, 0, sizeof(arr));
        //memset(arr, sizeof(arr), 0);
        for(int i = 0; i < n; i++)
        {
            if(s[i]=='2'){arr[2]++;}
            else if(s[i]=='3'){arr[3]++;}
            else if(s[i]=='4'){arr[3]++; arr[2]+=2; }
            else if(s[i]=='5'){arr[5]++; }
            else if(s[i]=='6'){arr[5]++;arr[3]++; }
            else if(s[i]=='7'){arr[7]++; }
            else if(s[i]=='8'){arr[7]++;arr[2]+=3; }
            else if(s[i]=='9'){arr[7]++;arr[3]+=2;arr[2]++; }
        }
        for(int i = 7; i >= 0; i--)
        {
            if(arr[i])
            {
                int n = arr[i];
                while(n--)
                {
                    printf("%d", i);
                }
            }
        }
        printf("\n");
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值