码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 6063 RXD and math

时间:2017-08-01 19:04:58      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:eof   int   using   turn   lld   code   ase   return   printf   

 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

标签:eof   int   using   turn   lld   code   ase   return   printf   

原文地址:http://www.cnblogs.com/hhxj/p/7269976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!