codeforces #630 F. Selection of Personnel
生活随笔
收集整理的這篇文章主要介紹了
codeforces #630 F. Selection of Personnel
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目鏈接
排列組合 計算 C(N,5)+C(N,6)+C(N,7)
#include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring> using namespace std; typedef long long LL; LL C(LL n,LL r){LL i,j,s=1;if(n-r<r)r=n-r;for(i=0,j=1;i<r;i++){s*=(n-i);while(j<=r&&s%j==0)s/=j,j++;}return s; } int main() {LL n;cin>>n;cout<<C(n,5)+C(n,6)+C(n,7)<<endl; }
總結
以上是生活随笔為你收集整理的codeforces #630 F. Selection of Personnel的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 人力资源管理专业知识与实务(初级)【7】
- 下一篇: Protocol Buffer编译器安装