码迷,mamicode.com
首页 > 其他好文 > 详细

uva 10007 Count the Trees

时间:2014-10-10 22:00:04      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   for   

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=948

  卡特兰数*n!

bubuko.com,布布扣
 1 import java.math.BigInteger;
 2 import java.util.*;
 3 public class Main {
 4       public static void main(String[]args)
 5       {
 6           Scanner cin=new Scanner(System.in);
 7           BigInteger []a=new BigInteger[1000];
 8           a[0]=BigInteger.valueOf(1);
 9           for(int i=1; i<=300; i++)
10           {
11               int m=(4*i-2);
12               a[i]=a[i-1].multiply(BigInteger.valueOf(m));
13               a[i]=a[i].divide(BigInteger.valueOf(i+1));
14           }
15           int n;
16           while(cin.hasNext())
17           {
18               n=cin.nextInt();
19               if(n==0) break;
20               BigInteger ans=BigInteger.valueOf(1);
21               for(int i=1; i<=n; i++)
22               {
23                   ans=ans.multiply(BigInteger.valueOf(i));
24               }
25               ans=ans.multiply(a[n]);
26               System.out.println(ans);
27           }
28       }
29 }
View Code

 

uva 10007 Count the Trees

标签:style   blog   http   color   io   os   ar   java   for   

原文地址:http://www.cnblogs.com/fanminghui/p/4016882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!