Preparando MOJI

Santa Claus and Candies

1000ms 262144K

Description:

Santa Claus has n candies, he dreams to give them as gifts to children.

What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer number of candies. Santa Class wants to give all n candies he has.

Input:

The only line contains positive integer number n (1 ≤ n ≤ 1000) — number of candies Santa Claus has.

Output:

Print to the first line integer number k — maximal number of kids which can get candies.

Print to the second line k distinct integer numbers: number of candies for each of k kid. The sum of k printed numbers should be exactly n.

If there are many solutions, print any of them.

Sample Input:

5

Sample Output:

2
2 3

Sample Input:

9

Sample Output:

3
3 5 1

Sample Input:

2

Sample Output:

1
2

Informação

Codeforces

Provedor Codeforces

Código CF753A

Tags

dpgreedymath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:11:33

Relacionados

Nada ainda