链接:https://codeforces.com/contest/1263/problem/C

On the well-known testing system MathForces, a draw of nn rating units is arranged. The rating will be distributed according to the following algorithm: if kk participants take part in this event, then the nn 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=5n=5 and k=3k=3, then each participant will recieve an 11 rating unit, and also 22 rating units will remain unused. If n=5n=5, and k=6k=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=5n=5, then the answer is equal to the sequence 0,1,2,50,1,2,5. Each of the sequence values (and only them) can be obtained as ⌊n/k⌋⌊n/k⌋ for some positive integer kk (where ⌊x⌋⌊x⌋ is the value of xx rounded down): 0=⌊5/7⌋0=⌊5/7⌋, 1=⌊5/5⌋1=⌊5/5⌋, 2=⌊5/2⌋2=⌊5/2⌋, 5=⌊5/1⌋5=⌊5/1⌋.

Write a program that, for a given nn, finds a sequence of all possible rating increments.

Input

The first line contains integer number tt (1≤t≤101≤t≤10) — the number of test cases in the input. Then tt test cases follow.

Each line contains an integer nn (1≤n≤1091≤n≤109) — the total number of the rating units being drawn.

Output

Output the answers for each of tt test cases. Each answer should be contained in two lines.

In the first line print a single integer mm — the number of different rating increment values that Vasya can get.

In the following line print mm integers in ascending order — the values of possible rating increments.

Example

input

Copy

4
5
11
1
3

output

Copy

4
0 1 2 5 
6
0 1 2 3 5 11 
2
0 1 
3
0 1 3 

代码:

#include<cstdio>
#include<iostream>
#include<cstring>
#include<map>
#include<queue>
#include<algorithm>
#include<cstdlib>
using namespace std;
long long n,t,g,r,l,k,y,x,s=0;
long long a[10000001];
map<long long,int>m,mm;
priority_queue<int, vector<int>, greater<int> >q;
int main()
{
   	cin>>t;
   	while(t--)
	{
		cin>>n;
		q.push(0);
		m.clear();
		mm.clear();
		for(int i=1;i*i<=n;i++)
		{
			if(m[i]==0&&m[n/i]==0)
			{
				if(m[i]==0)
				q.push(i);
				m[i]++;
				if(m[n/i]==0)
				q.push((n/i));
				m[n/i]++;
			}
		}
		cout<<q.size()<<endl;
		while(!q.empty())
		{
			int p=q.top();
			q.pop();
			cout<<p<<" ";
		}
		cout<<endl;
	}
    return 0;
}