Selection of Personnel

F - Selection of Personnel
Time Limit:500MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Description

One company of IT City decided to create a group of innovative developments consisting from 5 to 7 people and hire new employees for it. After placing an advertisment the company received n resumes. Now the HR department has to evaluate each possible group composition and select one of them. Your task is to count the number of variants of group composition to evaluate.

Input

The only line of the input contains one integer n (7 ≤ n ≤ 777) — the number of potential employees that sent resumes.

Output

Output one integer — the number of different variants of group composition.

Sample Input

Input
7
Output

29



题目大意:有n条东西向的路,有n条南北向的路,并且东西向的每条路都与南北向的每条路相交,也就形成了n*n个十字路口,现在要在这么多个路口放5条长椅,并且每条路上最多能放一条长椅,问有多少种放法。

解题思路:思路sum=C(n,5)*C(n,5)*120。先挑出5行,再挑出5列,每种情况会有120种放法*/


#include<stdio.h>
#include<string.h>
__int64 C(int n,int m)
{
	__int64 ans=1;
	int i;
	for(i=1;i<=m;i++)//一个for循环解决组合的计算! 
	{
		ans=ans*(n)/i;
		n--;
	}
	return ans;
} 
int main()
{
	int n;
	while(scanf("%d",&n)!=EOF)
	{
		__int64 t;
		t=C(n,5);
		printf("%I64d\n",120*t*t);
	}
	return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值