程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdu_2817_快速冪

hdu_2817_快速冪

編輯:C++入門知識

hdu_2817_快速冪


水~

#include 
#include 
#include 
#include 
#include 
#include 
#include
using namespace std;
#define MAX(x,y) (((x)>(y))?(x):(y))
#define MIN(x,y) (((x)<(y))?(x):(y))
#define N 500010
#define pi acos(-1.0)
#define mod 200907
#define inf 100000000
typedef long long ll;
typedef unsigned long long ull;
ll powmod(ll a,ll n){
    ll ans=1;
    ll tmp=a;
    while(n){
        if(n&1){
            ans*=tmp;
            ans%=mod;
        }
        n>>=1;
        tmp*=tmp;
        tmp%=mod;
    }
    return ans;
}

int main(){
    int t;
    scanf(%d,&t);
    ll a,b,c,n,ans;
    while(t--){
        scanf(%lld%lld%lld%lld,&a,&b,&c,&n);
        if(b*2==a+c){
            ans=(a+(n-1)*(b-a)%mod)%mod;
        }
        else {
            ans=a*powmod(b/a,n-1)%mod;
        }
        printf(%I64d
,ans);
    }
    return 0;
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved