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

nyoj 420 p次方求和 【快速幂】

时间:2014-09-13 00:49:44      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:好题   快速幂   

题意。。。

策略:rt

代码:

#include <stdio.h>
#include <string.h>
#define temp 10003
int ans(int n, int p){
	int res = 1;
	n %= temp;
	while(p){
		if(p&1) res = (n*res)%temp;
		n = (n*n)%temp;
		p /= 2;
	}
	return res;
}
int main(){
	int t, n, p;
	scanf("%d", &t);
	while(t --){
		scanf("%d%d", &n, &p);
		int sum = 0; //这里的sum初始化必须为0
		for(int i = 1; i <= n; i ++){ //i从1开始
			sum = (sum+ans(i, p))%temp;
		}
		printf("%d\n", sum);
	}
	return 0;
} 

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=420

nyoj 420 p次方求和 【快速幂】

标签:好题   快速幂   

原文地址:http://blog.csdn.net/shengweisong/article/details/39237961

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