博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
625. Minimum Factorization
阅读量:5940 次
发布时间:2019-06-19

本文共 666 字,大约阅读时间需要 2 分钟。

Given a positive integer a, find the smallest positive integer b whose multiplication of each digit equals to a

If there is no answer or the answer is not fit in 32-bit signed integer, then return 0.

Example 1

Input:

48

Output:

68

 

Example 2

Input: 

15

Output:

35
class Solution {public:    int smallestFactorization(int a) {        if (a < 2) return a;        string s;        for (int i = 9; i >= 2; i--) {            while (a % i == 0) {                s.insert(s.begin(), ('0' + i));                a /= i;            }        }        return (a > 1 || s.size() > 10 || stol(s) > INT_MAX) ? 0 : stoi(s);    }};

 

转载于:https://www.cnblogs.com/jxr041100/p/7889010.html

你可能感兴趣的文章
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
JS敏感信息泄露:不容忽视的WEB漏洞
查看>>
让我们荡起双桨,Android 小船波浪动画
查看>>
分布式memcached服务器代理magent安装配置(CentOS6.6)
查看>>
Create Volume 操作(Part III) - 每天5分钟玩转 OpenStack(52)
查看>>
tomcat 8.0虚拟机配置文档
查看>>
pxc群集搭建
查看>>
JS中加载cssText延时
查看>>
常用的脚本编程知识点
查看>>
XILINX_zynq_详解(6)
查看>>
计算机网络术语总结4
查看>>
新手小白 python之路 Day3 (string 常用方法)
查看>>
soapUI的简单使用(webservice接口功能测试)
查看>>
框架 Hibernate
查看>>
python-while循环
查看>>
手机端上传图片及java后台接收和ajaxForm提交
查看>>
【MSDN 目录】C#编程指南、C#教程、ASP.NET参考、ASP.NET 4、.NET Framework类库
查看>>
jquery 怎么触发select的change事件
查看>>
angularjs指令(二)
查看>>