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

oj2818

时间:2017-05-29 18:22:40      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ack   基础   std   disable   lld   nbsp   排列   style   algorithm   

基础排列组合

链接

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5 #pragma warning(disable:4996)
 6 int n;
 7 #define LL long long
 8 long long ans;
 9 long long jc(int n)
10 {
11     LL x = 1;
12     for (int i = 1; i <= n; i++)
13         x *= i;
14     return x;
15 }
16 int main()
17 {
18     while (~scanf("%d" , &n))
19     {
20         LL x = jc(n);
21         ans = x*x / n;
22         printf("%lld\n" , ans);
23     }
24     return 0;
25 }

 

oj2818

标签:ack   基础   std   disable   lld   nbsp   排列   style   algorithm   

原文地址:http://www.cnblogs.com/Sorry-for-now/p/6918450.html

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