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

Beijing2008

时间:2018-07-26 22:13:19      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:ret   space   scan   out   std   return   typedef   type   can   

#include<iostream>
#include<stdio.h>
using namespace std;
typedef long long ll;
ll q_pow(ll a,ll b,ll mod)
{
ll ans=1;
while(b!=0)
{
if(b&1)
ans=ans*a%mod;
b>>=1;
a=a*a%mod;
}
return ans%mod;
}
int main ()
{
int n,k;
while(scanf("%d%d",&n,&k)!=EOF)
{
if (n==0 && k==0)
break;
ll m1=(q_pow(2,3*n+1,250*k)-1)*(q_pow(251,n+1,250*k)-1);
ll m=m1%(250*k);
m=m/250;
ll s=(q_pow(2008,m,k)+k)%k;
cout<<s<<endl;
}
return 0;
}

Beijing2008

标签:ret   space   scan   out   std   return   typedef   type   can   

原文地址:https://www.cnblogs.com/huanya/p/9374612.html

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