https://ac.nowcoder.com/acm/contest/330/E

Python版本一

题解:

std
一个比较显然的结论是,对于每一列,有 2n 种涂色方法。
我们可以发现,当确定了第一列之后,由于左右相邻不能同色,所以后面每一列的涂色方案也随之确定。因此答案就是 2n 。
注意本题的 n 为高精度,需要使用指数循环节降幂或者十进制快速幂。(或者python)

print(pow(2, int(input().split()[0]), 10**9 + 7))

C++版本一

/*
*@Author:   STZG
*@Language: C++
*/
#include <bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<deque>
#include<stack>
#include<cmath>
#include<list>
#include<map>
#include<set>
//#define DEBUG
#define RI register int
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N=100000+10;
const int MOD=1e9+7;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m,k,q;
ll ans,cnt,flag,temp;
char b[N],a[N];
ll qpow(ll x,ll n)  //??
{
    ll ans=1;
    while(n)
    {
        if(n%2==1) ans=ans*x%MOD;
        x=x*x%MOD;
        n/=2;
    }
    return ans;
}
int main()
{
#ifdef DEBUG
	freopen("input.in", "r", stdin);
	//freopen("output.out", "w", stdout);
#endif
    scanf("%s%s",b,a);
    //scanf("%d",&t);
    //while(t--){}
    ll phic=MOD-1;
    int i,len=strlen(b);
    ll res=0;
    for(int i=0;i<len;i++){
        res=res*10+b[i]-'0';
        res%=phic;
    }
    ans=qpow(2,res)%MOD;
    cout<<ans<<endl;
    //cout << "Hello world!" << endl;
    return 0;
}