XDOJ_1063_数学
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XDOJ_1063_数学相关的知识,希望对你有一定的参考价值。
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_数学的主要内容,如果未能解决你的问题,请参考以下文章