博客
关于我
hdu 2035 人见人爱A^B
阅读量:139 次
发布时间:2019-02-27

本文共 370 字,大约阅读时间需要 1 分钟。

#include 
using namespace std;#define LL long longint qp(LL a, LL b, int mod){ int res = 1; while(b){ if(b&1) res = res*a%mod; a = a*a%mod; b >>= 1; } return res;}int main(){ int a, b; while(scanf("%d %d", &a, &b) == 2){ if(a == 0 && b == 0) break; printf("%d\n", qp(a, b, 1000)); } return 0;}

转载地址:http://tgnb.baihongyu.com/

你可能感兴趣的文章
Mysql之主从复制
查看>>