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

lucas定理

时间:2018-07-30 19:35:34      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:span   nbsp   ret   turn   ==   lucas定理   color   div   col   

ll Lucas(ll n, ll m )
{
    if(m ==0)  return 1;
    else return  (C(n%p, m%p)*Lucas(n/p, m/p))%p;
}

 

lucas定理

标签:span   nbsp   ret   turn   ==   lucas定理   color   div   col   

原文地址:https://www.cnblogs.com/mltang/p/9392265.html

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