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
#include <bits/stdc++.h>

using namespace std;

int n;
int s;
int t[500010];
int k=1;
vector <int>wynik;

int main()
{
    cin >> n;

    for(int i = 1 ; i <= 500000 ; ++i)
    {
       t[i] = t[i-1]+__builtin_popcount(i);
    }

    for(int i = 500000 ; i >= 0 ; --i)
    {
        if(t[i]<n)
        {
            n-=__builtin_popcount(i+1);
            wynik.push_back(i+1);
        }
    }

    cout << wynik.size()<< endl;

    for(int i = 0 ; i < wynik.size();i++)
    {
        cout << wynik[i] << " ";
    }


    return 0;
}