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
85
86
87
88
#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
vector<int>wynik;
set<int>Z;

int bit(int n) {

    int w = 0;

    while (n) {

        if (n % 2) w++;

        n /= 2;

    }

    return w;

}

vector<int>tab[1000005];

void solve() {

    int n; cin >> n;

    int sum = 0;
    int licz = 1;

    while (sum + bit(licz) <= n) {

        sum += bit(licz);

        wynik.push_back(licz);

        Z.insert(bit(licz));

        licz++;

    }

    reverse(wynik.begin(), wynik.end());

    if (sum == n) {

        cout << wynik.size() << "\n";

        for (int k : wynik) cout << k << " ";

        return;

    }

    sum += bit(licz);

    for (int k : wynik) {

        if (sum - n == bit(k)) {

            cout << wynik.size() << "\n";

            cout << licz << " ";

            for (int u : wynik) {

                if (u != k) cout << u << " ";

            }

            return;

        }

    }

}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);
    
    solve();
}