快速幂模板


typedef long long LL;
LL pow(LL a, LL n, LL m){
	LL res = 1;
	while(n){
		if(n & 1){
			res = res * a % m;
		}		
		a = a * a % m;		
		n >>= 1;		 
	}
	return res;
posted @ 2024-01-09 12:35  yufan1102  阅读(2)  评论(0编辑  收藏  举报