hdu 2035
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2035相关的知识,希望对你有一定的参考价值。
Ps:查了下快速幂,顺便在这用下....
积的求余等于两个数的求余的积再求余...
代码:
#include "stdio.h"
int mod(int a,int b);
int main(){
int a,b,n;
while(~scanf("%d%d",&a,&b) &&(a||b) ){
printf("%d\n",mod(a,b));
}
return 0;
}
int mod(int a,int b){
int ans=1;
a=a%1000;
while(b>0){
if(b%2==1) ans=(ans*a)%1000;
b=b/2;
a=(a*a)%1000;
}
return ans;
}
以上是关于hdu 2035的主要内容,如果未能解决你的问题,请参考以下文章