蟠桃记

Posted jaydenouyang

tags:

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

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 
 5 int main(){
 6     long long n;
 7     while (cin >> n){
 8         if (n == 0){
 9             //cout << 1 << endl;
10             continue;
11         }
12         int ans = 1;
13         for (int i = n - 1; i >= 1; i--){
14             ans = (ans + 1) * 2;
15         }
16         cout << ans << endl;
17     }
18 
19     //system("pause");
20     return 0;
21 }

 

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

HDU2013 蟠桃记递推

HDU 2013 蟠桃记

蟠桃记

2013蟠桃记

蟠桃记《快速幂》(两种解法)

题 蟠桃记