#include<bits/stdc++.h>
#define ll long long
#define boost ios_base::sync_with_stdio(false);cin.tie(0);cout.precision(20);
#define inf 1000000000
#define INF 1000000000000000000LL
#define mod 1000000007
#define VI vector<int>
#define PII pair<int, int>
#define st first
#define nd second
#define pb push_back
#define mp make_pair
#define endl '\n'
#define REP(x, y) for(int x = 0; x < (y); ++x)
#define FOR(x, y, z) for(int x = y; x <= (z); ++x)
#define FORR(x, y, z) for(int x = y; x >= (z); --x)
using namespace std;
int t,xx;
void solve(int x)
{
if (x==0)
return;
if (x==1)
{
cout << 1;
return;
}
if (x%2==0)
{
cout << "(1+1)*";
solve(x/2);
}
else
{
cout << "(1+";
solve(x-1);
cout << ")";
}
return;
}
int main()
{
boost
cin >> t;
while(t--)
{
cin >> xx;
solve(xx);
cout << endl;
}
return 0;
}
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | #include<bits/stdc++.h> #define ll long long #define boost ios_base::sync_with_stdio(false);cin.tie(0);cout.precision(20); #define inf 1000000000 #define INF 1000000000000000000LL #define mod 1000000007 #define VI vector<int> #define PII pair<int, int> #define st first #define nd second #define pb push_back #define mp make_pair #define endl '\n' #define REP(x, y) for(int x = 0; x < (y); ++x) #define FOR(x, y, z) for(int x = y; x <= (z); ++x) #define FORR(x, y, z) for(int x = y; x >= (z); --x) using namespace std; int t,xx; void solve(int x) { if (x==0) return; if (x==1) { cout << 1; return; } if (x%2==0) { cout << "(1+1)*"; solve(x/2); } else { cout << "(1+"; solve(x-1); cout << ")"; } return; } int main() { boost cin >> t; while(t--) { cin >> xx; solve(xx); cout << endl; } return 0; } |
English