Generating Sequence
Practice
3.5 (594 votes)
Greatest common divisor
Hiring
Easy
Mathematics
Open
Approved
Problem
30% Success 6574 Attempts 20 Points 1s Time Limit 256MB Memory 1024 KB Max Code

You are given a number g. Find a sequence A of length n which satisfies the following condition:

  1. GCD ( A0, A1, A2, .... ,Ai, ..... ,An-1 ) = g.

  2. Ai > g, ∀ 0 ≤ i < n.

  3. Ai ≥ Aj, ∀ j ≤ i

  4. Define a function, *sum(A) = A0 + A1 + .... + An-1.
    If multiple sequences satisfy first three properties, print the one which minimizes sum(A) function.*


INPUT

The first line will contain T, the number of test cases. Next T lines follow. The ith line will contain two space separated integers, g and n, for the ith test case.

OUTPUT

For each test case, print a line containing n space separated integers of sequence A.

CONSTRAINTS

1 ≤ T ≤ 1000
1 ≤ g ≤ 1014
2 ≤ n ≤ 1000

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading...
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:20
7 votes
Tags:
MathematicsApprovedEasyGreatest common divisor
Points:20
2 votes
Tags:
EasyNumber Theory
Points:20
Tags:
ImplementationEasy