记录编号 540236 评测结果 AAAAAAAAAA
题目名称 求组合数 最终得分 100
用户昵称 GravatarHale 是否通过 通过
代码语言 C++ 运行时间 0.106 s
提交时间 2019-08-18 20:32:58 内存使用 13.66 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. #define LL long long
  3. using namespace std;
  4. LL n,m,ans;
  5. const int Mod=1000000007;
  6. LL ksm(LL a,LL b,LL P)
  7. {
  8. LL res=1;a=a%P;
  9. while (b)
  10. {
  11. if (b&1) res=res*a%Mod;
  12. a=a*a%Mod;b>>=1;
  13. }
  14. return res;
  15. }
  16. int main()
  17. {
  18. freopen("combination.in","r",stdin);
  19. freopen("combination.out","w",stdout);
  20. scanf("%lld%lld",&n,&m);
  21. LL ans=1;
  22. for (int i=m+1;i<=n;i++) ans=ans*i%Mod;
  23. for (int i=1;i<=n-m;i++) ans=ans*ksm(i,Mod-2,Mod)%Mod;
  24. printf("%lld\n",ans);
  25. return 0;
  26. }