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
#include <cstdio>
#include <string>

void WyrazJedynkowo(unsigned liczba) {
    int nawiasowania = 0;
    std::string result;

    if (liczba == 1) {
        result.push_back('1');
    } else {
        while (liczba > 1) {
            int aktualny_bit = liczba & 0x1;
            int nastepna = liczba >> 1;
            int nastepny_bit = nastepna & 0x1;

            if (aktualny_bit) {
                result.push_back('1');
                result.push_back('+');
            }
            result.push_back('(');
            result.push_back('1');
            result.push_back('+');
            result.push_back('1');
            result.push_back(')');

            if (nastepna > 1) {
                result.push_back('*');
                if (nastepny_bit) {
                    result.push_back('(');
                    nawiasowania++;
                }
            }
            liczba >>= 1;
        }
        while (nawiasowania > 0) {
            result.push_back(')');
            nawiasowania--;
        }
    }

    printf("%s\n", result.c_str());
}

int main() {
    int liczba_testow;
    scanf("%d", &liczba_testow);

    for (int i=0; i<liczba_testow; i++) {
        int do_wyrazenia;
        scanf("%u", &do_wyrazenia);
        WyrazJedynkowo(do_wyrazenia);
    }
    
    return 0;
}