0%

[題解]雪花片片

a104/ 雪花片片

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <bits/stdc++.h>
#define int long long
#define ios ios::sync_with_stdio(0)
using namespace std;
int n,product[100];

void solve(){
memset(product,0,sizeof(product));
product[0] = 1;
for(int i=0;i<n;i++){
for(int j=0;j<80;j++){
product[j]=product[j]*4;
}
for(int j=0;j<80;j++){
if(product[j]>=10){
product[j+1] += product[j]/10;
product[j] %=10;
}
}
}
}

signed main(){
cin>>n;
solve();
product[0]-=1;
int temp=0;
for(int i=80;i>=0;i--){
product[i] += temp*10;
temp = product[i]%3;
product[i] /= 3;
}

int start = 80;
for(int i=80;i>=0;i--)
if(product[i]!=0){
start = i;
break;
}
for(int i=start;i>=0;i--)cout<<product[i];
cout<<endl;
}