Distribute candies among people
Medium
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Given n candies and k people. In the first turn, the first person gets 1 candy, the second gets 2 candies, and so on till k people. In the next turn, the first person gets k + 1 candies, the second person gets k + 2 candies and so on until all the sweets are distributed. If the number of candies is less than the required number of candies at every turn, then the person receives the remaining number of candies.
Find the total number of candies every person has at the end.
Input
The number of candies n (n ≤ 10^18
) and the number of people k (k ≤ 10^6
).
Output
Print k integers: how many candies will get each person in total.
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 635
Acceptance rate 11%