You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
/*
|
|
1折 ---- 3段绳子
|
|
2折 ---- 5段绳子
|
|
3折 ---- 9段绳子
|
|
4折 ---- 17段绳子
|
|
|
|
n折
|
|
*/
|
|
|
|
int main() {
|
|
int n;
|
|
cin >> n;
|
|
|
|
int s = 1;
|
|
for (int i = 1; i <= n; i++) s *= 2;
|
|
|
|
printf("%d", s + 1);
|
|
return 0;
|
|
} |