您好,欢迎来到外链网!
当前位置:外链网 » 站长资讯 » 专业问答 » 文章详细 订阅RssFeed

CodeForces 630HBenches排列组合,排列组合的三种方法

来源:互联网 浏览:96次 时间:2023-04-08
Benches Time Limit:500MS?????Memory Limit:65536KB?????64bit IO Format:%I64d & %I64u Submit? Status

Description

The city park of IT City contains?n?east to west paths and?n?north to south paths. Each east to west path crosses each north to south path, so there are?n2?intersections.

The city funded purchase of five benches. To make it seems that there are many benches it was decided to place them on as many paths as possible. Obviously this requirement is satisfied by the following scheme: each bench is placed on a cross of paths and each path contains not more than one bench.

Help the park administration count the number of ways to place the benches.

Input

The only line of the input contains one integer?n?(5?≤?n?≤?100) — the number of east to west paths and north to south paths.

Output

Output one integer — the number of ways to place the benches.

Sample Input

Input 5 Output 120 AC-code: #include<cstdio>int main(){int n,j;long long m,temp;scanf("%d",&n);temp=1;for(j=1;j<=5;j++) temp=temp*(n-j+1)/j;m=temp*temp*120;printf("%lld\n",m);}

42252392