CF478B.Random Teams

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

nn participants of the competition were split into mm 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 nn and mm , separated by a single space ( 1<=m<=n<=1091<=m<=n<=10^{9} ) — the number of participants and the number of teams respectively.

输出格式

nn participants of the competition were split into mm 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
    

说明/提示

In the first sample all the participants get into one team, so there will be exactly ten pairs of friends.

In the second sample at any possible arrangement one team will always have two participants and the other team will always have one participant. Thus, the number of pairs of friends will always be equal to one.

In the third sample minimum number of newly formed friendships can be achieved if participants were split on teams consisting of 22 people, maximum number can be achieved if participants were split on teams of 11 , 11 and 44 people.

首页