time limit: 1000 ms
memory limit: 65536 kib
submit
statistic
discuss
problem description
對乙個自然數n ( 1 <= n <= 50 ) ,n可以分解成若干個數字(數字可以是1,2,3,….,9)之和,問題是如何分解能使這些數字的乘積最大。
input
輸入資料有多組,每組佔一行,每行包含乙個自然數n(1 <= n <= 50)。輸入檔案直到eof為止!
output
對每組輸入,輸出有2行。第一行是n分解出的所有數字,以空格分隔,最後乙個數字後也有空格;第二行是n分解出的所有數字的個數、乘積。
sample input
202428
sample output
3 3 3 3 3 3 27 1458
3 3 3 3 3 3 3 3
8 6561
3 3 3 3 3 3 3 3 4
9 26244
hint
由數學知識可知,只有把n分成盡可能多的3,它們的乘積才能最大(當只剩下4時不用再分,因為: 4 > 3*1)
有了提示就很簡單了,仔細讀題注意格式
#include #include int main()
else if(n == 2)
else
for(i=1, n=1; i<=x; i++)
if(y == 0)
else if(y == 1)
else}}
return 0;
}
M 數值分解
description 對乙個自然數n 1 n 50 n可以分解成若干個數字 數字可以是1,2,3,9 之和,問題是如何分解能使這些數字的乘積最大。input 輸入資料有多組,每組佔一行,每行包含乙個自然數n 1 n 50 輸入檔案直到eof為止!output 對每組輸入,輸出有2行。第一行是n分解...
M 數值分解
description 對乙個自然數n 1 n 50 n可以分解成若干個數字 數字可以是1,2,3,9 之和,問題是如何分解能使這些數字的乘積最大。input 輸入資料有多組,每組佔一行,每行包含乙個自然數n 1 n 50 輸入檔案直到eof為止!output 對每組輸入,輸出有2行。第一行是n分解...
數值分解 oj
time limit 1000 ms memory limit 65536 kib submit statistic problem description 對乙個自然數n 1 n 50 n可以分解成若干個數字 數字可以是1,2,3,9 之和,問題是如何分解能使這些數字的乘積最大。input 輸入資...