codeforces630C

Posted gaojunonly1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces630C相关的知识,希望对你有一定的参考价值。

Lucky Numbers

 CodeForces - 630C 

小希称只含7和8的数是幸运数,那么不超过n位的幸运数有多少个?

Input

一个整数 n (1 ≤ n ≤ 55) 

Output

输出幸运数的数量

Example

Input

2

Output

6

 

sol:这和0,1有个屁区别 ----摘自yj大佬原话

结论非常显然小学生都知道 2n+1-2

技术图片
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
inline ll read()
{
    ll s=0;
    bool f=0;
    char ch= ;
    while(!isdigit(ch))
    {
        f|=(ch==-); ch=getchar();
    }
    while(isdigit(ch))
    {
        s=(s<<3)+(s<<1)+(ch^48); ch=getchar();
    }
    return (f)?(-s):(s);
}
#define R(x) x=read()
inline void write(ll x)
{
    if(x<0)
    {
        putchar(-); x=-x;
    }
    if(x<10)
    {
        putchar(x+0);    return;
    }
    write(x/10);
    putchar((x%10)+0);
    return;
}
#define W(x) write(x),putchar(‘ ‘)
#define Wl(x) write(x),putchar(‘
‘)
ll n;
int main()
{
    ll ans=0;
    R(n);
    Wl(1ll*((1ll<<(n+1))-2));
    return 0;
}
View Code

 

 

以上是关于codeforces630C的主要内容,如果未能解决你的问题,请参考以下文章

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段

c_cpp Codeforces片段

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)

CodeForces 931F Teodor is not a liar!