HDU 2035 명 만 나 는 사람 사랑 A ^ B (빠 른 속도 모드)

2785 단어 HDUOJACM_쾌속 멱
사람마다 사랑 A ^ B
Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 34030    Accepted Submission(s): 23080
Problem Description
A ^ B 의 마지막 세 자리 수가 표시 하 는 정 수 를 구하 세 요.설명: A ^ B 의 의 미 는 "A 의 B 차방" 입 니 다.
Input
입력 데 이 터 는 여러 개의 테스트 인 스 턴 스 를 포함 하고 모든 인 스 턴 스 가 한 줄 을 차지 하 며 두 개의 정수 A 와 B 로 구성 된다 (1 < = A, B < = 10000). 만약 A = 0, B = 0 이면 입력 데이터 의 끝 을 나타 내 고 처리 하지 않 는 다.
Output
모든 테스트 인 스 턴 스 에 대해 A ^ B 의 마지막 세 자리 가 표시 하 는 정 수 를 출력 하 십시오. 출력 마다 한 줄 을 차지 합 니 다.
Sample Input
 
   
2 3 12 6 6789 10000 0 0

Sample Output
 
   
8 984 1

Author
lcy
 
题解:快速幂取模 
AC代码:
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef long long LL;
using namespace std;
/*
int pow_mod(int a,int p)    //      
{
    if(p==0) return 1;
    int ans=pow_mod(a,p/2);
    ans=ans*ans%1000;
    if(p%2==1) ans=ans*a%1000;
    return ans;
}
*/
int pow_mod(LL a,LL b,int c){    //      
	LL ans=1;
	a=a%c;
	while(b>0){
		if(b&1){         //b&1   b%2==1
			ans=(ans*a)%c;
		}
		b=b>>1;  
        a=(a*a)%c;
	}
	return ans;
}
int main()
{
    int a,b;
    while(scanf("%d%d",&a,&b)!=EOF)
    {
        if(a==0&&b==0) break;
        printf("%d
",pow_mod(a,b,1000)); } }

아 날로 그:
#include
using namespace std;
int main()
{
    int a,b;
    while(scanf("%d%d",&a,&b)!=EOF)   
    {
        if(a==0&&b==0) break;
        int ans=1;
        for(int i=0;i

좋은 웹페이지 즐겨찾기