CF1263C.Everyone is a Winner!
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
On the well-known testing system MathForces, a draw of n rating units is arranged. The rating will be distributed according to the following algorithm: if k participants take part in this event, then the n rating is evenly distributed between them and rounded to the nearest lower integer, At the end of the drawing, an unused rating may remain — it is not given to any of the participants.
For example, if n=5 and k=3 , then each participant will recieve an 1 rating unit, and also 2 rating units will remain unused. If n=5 , and k=6 , then none of the participants will increase their rating.
Vasya participates in this rating draw but does not have information on the total number of participants in this event. Therefore, he wants to know what different values of the rating increment are possible to get as a result of this draw and asks you for help.
For example, if n=5 , then the answer is equal to the sequence 0,1,2,5 . Each of the sequence values (and only them) can be obtained as ⌊n/k⌋ for some positive integer k (where ⌊x⌋ is the value of x rounded down): 0=⌊5/7⌋ , 1=⌊5/5⌋ , 2=⌊5/2⌋ , 5=⌊5/1⌋ .
Write a program that, for a given n , finds a sequence of all possible rating increments.
输入格式
The first line contains integer number t ( 1≤t≤10 ) — the number of test cases in the input. Then t test cases follow.
Each line contains an integer n ( 1≤n≤109 ) — the total number of the rating units being drawn.
输出格式
Output the answers for each of t test cases. Each answer should be contained in two lines.
In the first line print a single integer m — the number of different rating increment values that Vasya can get.
In the following line print m integers in ascending order — the values of possible rating increments.
输入输出样例
输入#1
4 5 11 1 3
输出#1
4 0 1 2 5 6 0 1 2 3 5 11 2 0 1 3 0 1 3