302481: CF478B. Random Teams
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Random Teams
题意翻译
将N个人分成M组,每组至少一人,在比赛结束时,同一组的人两两之间都会成为朋友,不同分组的分组方案得到的朋友对数不同。你的任务是求出最小和最大的朋友对数。 1≤m≤n≤10^16题目描述
$ n $ participants of the competition were split into $ m $ teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is to write a program that will find the minimum and the maximum number of pairs of friends that could have formed by the end of the competition.输入输出格式
输入格式
The only line of input contains two integers $ n $ and $ m $ , separated by a single space ( $ 1<=m<=n<=10^{9} $ ) — the number of participants and the number of teams respectively.
输出格式
$ n $ participants of the competition were split into $ m $ teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is to write a program that will find the minimum and the maximum number of pairs of friends that could have formed by the end of the competition.
输入输出样例
输入样例 #1
5 1
输出样例 #1
10 10
输入样例 #2
3 2
输出样例 #2
1 1
输入样例 #3
6 3
输出样例 #3
3 6