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

XDOJ_1063_数学

时间:2016-10-20 07:30:33      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

http://acm.xidian.edu.cn/problem.php?id=1063

 

推不出来啊= =!

http://www.dxhx.pku.edu.cn/fileup/PDF/20060324.pdf

 

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define LL long long
#define MOD 1000000007
using namespace std;

LL PowerMod(LL a, LL b, LL c)
{
    LL ans = 1;
    a = a % c;
    while(b)
    {
        if(b&1) ans = (ans*a)%c;
        b = b>>1;
        a = (a*a)%c;
    }
    return ans;
}

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        if(n == 1)    printf("1\n");
        else if(n%2)    printf("%lld\n",PowerMod(2,n-1,MOD));
        else    printf("%lld\n",(PowerMod(2,n-1,MOD)+PowerMod(2,n/2-1,MOD))%MOD);
    }
    return 0;
}

 

XDOJ_1063_数学

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5979310.html

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