日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

ural 1014. Product of Digits

發布時間:2025/5/22 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ural 1014. Product of Digits 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1014. Product of Digits

Time Limit: 1.0 second
Memory Limit: 64 MB Your task is to find the minimal positive integer number Q so that the product of digits of Q is exactly equal to N.

Input

The input contains the single integer number N (0 ≤ N ≤ 109).

Output

Your program should print to the output the only number Q. If such a number does not exist print ?1.

Sample

inputoutput
10 25
#include <iostream> #include <algorithm> #include <cmath> #include <vector> using namespace std;int main(){long long n;cin >> n;if(n == 0){cout<<10<<endl;return 0;}if(n == 1){cout<<1<<endl;return 0;}vector<int> product;bool flag = false;while(n!=1){int i;for(i = 9;i>1; i -- ){if(n%i == 0) {product.push_back(i);n /=i; ;break;}}if( i== 1) {if(n < 10) product.push_back(n);else flag = true;break;}}if(flag) {cout<<-1<<endl;return 0;}long long ans = 0;for(int i = product.size()-1 ; i >= 0 ; i-- ){ans = ans*10+product[i];}cout<<ans<<endl;return 0; }

?

轉載于:https://www.cnblogs.com/xiongqiangcs/archive/2013/04/23/3037151.html

總結

以上是生活随笔為你收集整理的ural 1014. Product of Digits的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。