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

快速乘

时间:2018-04-01 10:45:17      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:turn   color   nbsp   class   log   int   pre   快速乘   col   

long long int c;
long long int work(int n,int m)
{
    long long int ans=0;
    n=n%c;
    m=m%c;
    while(m>0)
    {
        if(m&1) ans=(ans+n)%c;
        n=(n+n)%c;
        m>>=1;
    }
    return ans;
}

 

快速乘

标签:turn   color   nbsp   class   log   int   pre   快速乘   col   

原文地址:https://www.cnblogs.com/ww123/p/8685550.html

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