数的排列问题
Time Limit:1000MS Memory Limit:65536K
Total Submit:16 Accepted:13
Description
输入n,r 统计从1到n,n个数中取r个不同的数有几种取法。要求所取的结果各位不同,且低位数数字大于高位数数字。
Input
一行两个数:n r
Output
所有取法,一行一个r位数
Sample Input
5 3
Sample Output
123 124 125 134 135 145 234 235 245 345
Source