CF1438A.Specific Tastes of Andre

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Specific Tastes of Andre

Andre has very specific tastes. Recently he started falling in love with arrays.

Andre calls an nonempty array bb good, if sum of its elements is divisible by the length of this array. For example, array [2,3,1][2, 3, 1] is good, as sum of its elements — 66 — is divisible by 33, but array [1,1,2,3][1, 1, 2, 3] isn't good, as 77 isn't divisible by 44.

Andre calls an array aa of length nn perfect if the following conditions hold:

  • Every nonempty subarray of this array is good.
  • For every ii (1in1 \le i \le n), 1ai1001 \leq a_i \leq 100.

Given a positive integer nn, output any perfect array of length nn. We can show that for the given constraints such an array always exists.

An array cc is a subarray of an array dd if cc can be obtained from dd by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.

Input

Each test contains multiple test cases. The first line contains the number of test cases tt (1t1001 \le t \le 100). Description of the test cases follows.

The first and only line of every test case contains a single integer nn (1n1001 \le n \le 100).

Output

For every test, output any perfect array of length nn on a separate line.

Note

Array [19,33][19, 33] is perfect as all 33 its subarrays: [19][19], [33][33], [19,33][19, 33], have sums divisible by their lengths, and therefore are good.

Samples

3
1
2
4
24
19 33
7 37 79 49

在线编程 IDE

建议全屏模式获得最佳体验