301615: CF306A. Candies

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Candies

题意翻译

有 $n$ 颗糖要尽可能平均分配的分给 $m$ 个人,求分配方案(任意顺序,$1\le m\le n \le 100$)。 by [hanyuchen2019](https://www.luogu.com.cn/user/277757)

题目描述

Polycarpus has got $ n $ candies and $ m $ friends ( $ n>=m $ ). He wants to make a New Year present with candies to each friend. Polycarpus is planning to present all candies and he wants to do this in the fairest (that is, most equal) manner. He wants to choose such $ a_{i} $ , where $ a_{i} $ is the number of candies in the $ i $ -th friend's present, that the maximum $ a_{i} $ differs from the least $ a_{i} $ as little as possible. For example, if $ n $ is divisible by $ m $ , then he is going to present the same number of candies to all his friends, that is, the maximum $ a_{i} $ won't differ from the minimum one.

输入输出格式

输入格式


The single line of the input contains a pair of space-separated positive integers $ n $ , $ m $ ( $ 1<=n,m<=100;n>=m $ ) — the number of candies and the number of Polycarpus's friends.

输出格式


Print the required sequence $ a_{1},a_{2},...,a_{m} $ , where $ a_{i} $ is the number of candies in the $ i $ -th friend's present. All numbers $ a_{i} $ must be positive integers, total up to $ n $ , the maximum one should differ from the minimum one by the smallest possible value.

输入输出样例

输入样例 #1

12 3

输出样例 #1

4 4 4 

输入样例 #2

15 4

输出样例 #2

3 4 4 4 

输入样例 #3

18 7

输出样例 #3

2 2 2 3 3 3 3 

说明

Print $ a_{i} $ in any order, separate the numbers by spaces.

Input

题意翻译

有 $n$ 颗糖要尽可能平均分配的分给 $m$ 个人,求分配方案(任意顺序,$1\le m\le n \le 100$)。 by [hanyuchen2019](https://www.luogu.com.cn/user/277757)

加入题单

算法标签: