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

oj2817

时间:2017-05-29 18:26:51      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:turn   string   war   code   while   printf   cstring   http   targe   

#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<algorithm>
using namespace std;
#pragma warning(disable:4996)
#define LL long long
int n;
LL ans;
LL jc(int n)
{
    LL x = 1;
    for (int i = 1; i <= n; i++)
        x *= i;
    return x;
}
int main()
{
    while (~scanf("%d" , &n))
    {
        ans = jc(n) / 2;
        ans /= n;
        if (ans == 0)
            ans = 1;
        printf("%lld\n" , ans);
    }
    return 0;
}

排列组合

链接

oj2817

标签:turn   string   war   code   while   printf   cstring   http   targe   

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

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