시간 제한메모리 제한제출정답맞힌 사람정답 비율
4 초 512 MB185785941.549%

문제

Johnny collects toys. His collection may contain many toys of many different types: cars, trucks, diggers and many more. He may own more than one piece of the same toy, e.g. four trucks, in which case all the pieces are indistinguishable for him.

Emma asked Johnny how many toys he has. Not wanting to reveal the secret, he answered with a riddle (it is typical for him): If I chose a different set of my toys for each day, I could play for n days. In other words, for every two days there is a type of toy with a different quantity. Here, Johnny considers an empty set of toys as a valid set.

Emma likes neither the answer and nor this riddle, but she is really curious to know how many toys Johnny has. She asked you for help. Can you determine all possibilities of the number of toys that Johnny may have in his collection?

입력

The first (and the only one) line of the standard input contains an integer n (1 ≤ n ≤ 109).

출력

The first line of the standard output should contain one integer r, the number of solutions (that is, the number of possibilities of the number of toys in Johnny’s collection).

The second line should contain a strictly increasing sequence of r integers that represents the numbers of toys that Johnny may have in his collection.

서브태스크

번호배점제한
119

n ≤ 50

220

n ≤ 10 000

320

n ≤ 100 000

420

n ≤ 108

521

No additional constraints

예제 입력 1

12

예제 출력 1

4
4 5 6 11

Johnny could have:

  • two trucks, one car, and one digger (4 toys in total),
  • three trucks and two cars (5 toys in total),
  • five trucks and one car (6 toys in total),
  • eleven trucks (11 toys in total).

Each of these options guarantees exactly 12 days of fun. For example, if he has eleven trucks, he can choose a set of i − 1 trucks on the i-th day (for i = 1, . . . , 12).

예제 입력 2

36

예제 출력 2

8
6 7 8 10 11 13 18 35

Note that there are two different sets of 10 toys that guarantee 36 days of fun:

  • one truck, one car, and eight diggers,
  • five trucks and five diggers.

Still, only one of them is output.

To get 6 toys in total, Johnny could have one truck, one car, two diggers and two buses.

채점 및 기타 정보

  • 예제는 채점하지 않는다.