#include <iostream>
using namespace std;
int main()
{
int t,a,pom,naw,p,s;
cin >> t;
for(int i=0;i<t;i++)
{
naw=0;
s=0;
cin >> a;
if(a==1)
{
cout << "1";
continue;
}
pom=a;
p=1;
while(pom>1)
{
for(int j=2;j<=7;j++)
{
if(pom%j==0)
{
pom=pom/j;
s+=j;
p=0;
break;
}
}
if(p)
{
pom--;
s++;
}
}
if(s>100)
{
cout << "NIE";
continue;
}
pom=a;
p=1;
while(pom>1)
{
for(int j=2;j<=7;j++)
{
if(pom%j==0)
{
pom=pom/j;
cout << "(1";
for(int k=1;k<j;k++)
{
cout << "+1";
}
cout << ")";
if(pom!=1)
{
cout << "*";
}
p=0;
break;
}
}
if(p)
{
pom--;
cout << "(1+";
naw++;
}
}
for(int i=0;i<naw;i++)
{
cout << ")";
}
if(i!=t-1)
{
cout << "\n";
}
}
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | #include <iostream> using namespace std; int main() { int t,a,pom,naw,p,s; cin >> t; for(int i=0;i<t;i++) { naw=0; s=0; cin >> a; if(a==1) { cout << "1"; continue; } pom=a; p=1; while(pom>1) { for(int j=2;j<=7;j++) { if(pom%j==0) { pom=pom/j; s+=j; p=0; break; } } if(p) { pom--; s++; } } if(s>100) { cout << "NIE"; continue; } pom=a; p=1; while(pom>1) { for(int j=2;j<=7;j++) { if(pom%j==0) { pom=pom/j; cout << "(1"; for(int k=1;k<j;k++) { cout << "+1"; } cout << ")"; if(pom!=1) { cout << "*"; } p=0; break; } } if(p) { pom--; cout << "(1+"; naw++; } } for(int i=0;i<naw;i++) { cout << ")"; } if(i!=t-1) { cout << "\n"; } } return 0; } |
English