HDOJ(HDU) 2212 DFS(階乘相關、)

來源:互聯網
上載者:User

標籤:

Problem Description
A DFS(digital factorial sum) number is found by summing the factorial of every digit of a positive integer.

For example ,consider the positive integer 145 = 1!+4!+5!, so it’s a DFS number.

Now you should find out all the DFS numbers in the range of int( [1, 2147483647] ).

There is no input for this problem. Output all the DFS numbers in increasing order. The first 2 lines of the output are shown below.

Input
no input

Output
Output all the DFS number in increasing order.

Sample Output
1
2
……

其實你輸出後就會知道。。輸出就只有4個數,你可以直接輸出。
在這裡,我是寫了過程的。

public class Main{    static int fact[] = new int[10];    public static void main(String[] args) {        dabiao();        //9!*7 7位元-比9999999小,後面的數字更不用說了,肯定小。        for(int i=1;i<=9999999;i++){            if(isTrue(i)){                System.out.println(i);            }        }    }    private static void dabiao() {        //求階乘的,注意:0的階乘為1        fact[0]=1;        for(int i=1;i<fact.length;i++){            fact[i]=1;            for(int j=1;j<=i;j++){                fact[i]=fact[i]*j;            }        }    }    //判斷是不是相等    private static boolean isTrue(int i) {        if(i==1||i==2){            return true;        }        int sum=0;        int n=i;        while(n!=0){            int k=n%10;            sum+=fact[k];            n=n/10;        }        if(sum==i){            return true;        }        return false;    }}

HDOJ(HDU) 2212 DFS(階乘相關、)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.