记录编号 320491 评测结果 AAAAAAAAAA
题目名称 [HNOI 2008] 越狱 最终得分 100
用户昵称 GravatarAntiLeaf 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2016-10-12 07:14:28 内存使用 0.29 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#define LL long long
using namespace std;
const LL p=100003;
LL qpow(LL,LL);
LL n,m;
int main(){
#define MINE
#ifdef MINE
	freopen("prisona.in","r",stdin);
	freopen("prisona.out","w",stdout);
#endif
	scanf("%lld%lld",&m,&n);
	printf("%lld\n",(qpow(m,n)-qpow(m-1ll,n-1ll)*m%p+p)%p);
#ifndef MINE
	printf("\n-------------------------DONE-------------------------\n");
	for(;;);
#endif
	return 0;
}
LL qpow(LL a,LL b){
	LL ans=1ll;
	for(;b;b>>=1,a=a*a%p)if(b&1ll)ans=ans*a%p;
	return ans;
}