A. Filling Shapes1000 / 找规律
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Filling Shapes1000 / 找规律相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1182/A
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int n; cin>>n;
if(n&1) puts("0");
else
{
int k=n/2;
long long int ans=1;
for(int i=1;i<=k;i++) ans*=2;
cout<<ans;
}
return 0;
}
以上是关于A. Filling Shapes1000 / 找规律的主要内容,如果未能解决你的问题,请参考以下文章
A. Arpa’s hard exam and Mehrdad’s naive cheat 1000 / 数论 找规律