CF546A.Soldier and Bananas

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A soldier wants to buy ww bananas in the shop. He has to pay kk dollars for the first banana, 2k2k dollars for the second one and so on (in other words, he has to pay iki·k dollars for the ii -th banana).

He has nn dollars. How many dollars does he have to borrow from his friend soldier to buy ww bananas?

输入格式

The first line contains three positive integers k,n,wk,n,w ( 1<=k,w<=10001<=k,w<=1000 , 0<=n<=1090<=n<=10^{9} ), the cost of the first banana, initial number of dollars the soldier has and number of bananas he wants.

输出格式

Output one integer — the amount of dollars that the soldier must borrow from his friend. If he doesn't have to borrow money, output 00 .

输入输出样例

  • 输入#1

    3 17 4
    

    输出#1

    13
首页