博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces - 630C Lucky Numbers
阅读量:5855 次
发布时间:2019-06-19

本文共 997 字,大约阅读时间需要 3 分钟。

Time Limit: 500MS   Memory Limit: 65536KB   64bit IO Format: %I64d & %I64u

 

Description

The numbers of all offices in the new building of the Tax Office of IT City will have lucky numbers.

Lucky number is a number that consists of digits 7 and 8 only. Find the maximum number of offices in the new building of the Tax Office given that a door-plate can hold a number not longer than n digits.

Input

The only line of input contains one integer n (1 ≤ n ≤ 55) — the maximum length of a number that a door-plate can hold.

Output

Output one integer — the maximum number of offices, than can have unique lucky numbers not longer than n digits.

Sample Input

Input
2
Output
6

#include 
#include
int main(){ long long n; while (scanf("%lld", &n) != EOF) { long long ans = 2; if (n == 0) continue; for (long long i = 2; i <= n; i++) { ans = ans + pow(2 , i); } printf("%lld\n", ans); } return 0;}

转载于:https://www.cnblogs.com/cniwoq/p/6770971.html

你可能感兴趣的文章
cURL中的超时设置
查看>>
如何保障微服务架构下的数据一致性
查看>>
软件开发过程学习笔记(四)之详细设计说明书模板 分类: 开发过程 ...
查看>>
Python操作Redis及连接方式
查看>>
vs的【warning C4996:'fopen': This function or variable may be unsafe】解决方案
查看>>
长安大学第四届ACM-ICPC“迎新杯”程序设计竞赛-重现赛 F - 打铁的箱子
查看>>
zoj 3204 Connect them
查看>>
解决BUG:Cannot change version of project facet Dynamic web module to 2.5
查看>>
2018/8/10 部分枚举(类似尺取)
查看>>
[LUOGU] P2245 星际导航
查看>>
【转】TabError:inconsistent use of tabs and spaces
查看>>
基于人脸识别的商业大数据14
查看>>
Class.forName("com.mysql.jdbc.Driver");的作用
查看>>
C# 泛型
查看>>
功能测试
查看>>
django的queryset和objects对象
查看>>
Dubbo架构设计简单了解
查看>>
网络编程:基于C语言的简易代理服务器实现(proxylab)
查看>>
badboy录制网站出现css样式混乱,网页的图标点击没反应
查看>>
步步为营 .NET 设计模式学习笔记系列总结
查看>>