hdu 6063 RXD and math

Posted 早知如此绊人心,何如当初莫相识。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 6063 RXD and math相关的知识,希望对你有一定的参考价值。

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 const ll mod=1e9+7;
 5 
 6 ll hh(ll x,ll y){
 7     ll s=1;
 8     while(y){
 9         if(y&1) s=s*x%mod;
10         x=x*x%mod;
11         y>>=1;
12     }
13     return s;
14 }
15 int main(){
16     int k=1;
17     ll n,m;
18     while(scanf("%lld%lld",&n,&m)!=EOF){
19         n%=mod;
20         printf("Case #%d: %lld\n",k++,hh(n,m));
21     }
22 }

 

以上是关于hdu 6063 RXD and math的主要内容,如果未能解决你的问题,请参考以下文章

HDU 6060 RXD and dividing(dfs 思维)

hdu 6060 RXD and dividing

hdu6060 RXD and dividing 贪心

HDU 6060 RXD and dividing(LCA)

HDU 6060 17多校3 RXD and dividing(树+dfs)

HDU 6065 RXD, tree and sequence (LCA+DP)