注解:如果。。我说这道题还是猜的话,,额。因为上一道是3^n-1。我还是猜的,3^(n+1)-1
代码如下:
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
int main()
{
int m,t;
cin >> t;
while (t--)
{
_int64 ans = 1;
cin >> m;
while (m-- > 1)
ans *= 3;
ans++;
cout << ans << endl;
}
return 0;
}