题库练习 Sport Mafia
← 上一题 下一题 →

A12677 | Sport Mafia

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Each evening after the dinner the SIS's students gather together to play the game of Sport Mafia.

For the tournament, Alya puts candies into the box, which will serve as a prize for a winner. To do that, she performs $n$ actions. The first action performed is to put a single candy into the box. For each of the remaining moves she can choose from two options:

- the first option, in case the box contains at least one candy, is to take exactly one candy out and eat it. This way the number of candies in the box decreased by $1$ ;
- the second option is to put candies in the box. In this case, Alya will put $1$ more candy, than she put in the previous time.

Thus, if the box is empty, then it can only use the second option.

For example, one possible sequence of Alya's actions look as follows:

- put one candy into the box;
- put two candies into the box;
- eat one candy from the box;
- eat one candy from the box;
- put three candies into the box;
- eat one candy from the box;
- put four candies into the box;
- eat one candy from the box;
- put five candies into the box;

This way she will perform $9$ actions, the number of candies at the end will be $11$ , while Alya will eat $4$ candies in total.

You know the total number of actions $n$ and the number of candies at the end $k$ . You need to find the total number of sweets Alya ate. That is the number of moves of the first option. It's guaranteed, that for the given $n$ and $k$ the answer always exists.

Please note, that during an action of the first option, Alya takes out and eats exactly one candy.

输入格式

The first line contains two integers $n$ and $k$ ( $1 \le n \le 10^9$ ; $0 \le k \le 10^9$ ) — the total number of moves and the number of candies in the box at the end.

It's guaranteed, that for the given $n$ and $k$ the answer exists.

输出格式

Print a single integer — the number of candies, which Alya ate. Please note, that in this problem there aren't multiple possible answers — the answer is unique for any input data.

输入输出样例

输入 #1
1 1
输出 #1
0
输入 #2
9 11
输出 #2
4
输入 #3
5 0
输出 #3
3
输入 #4
3 2
输出 #4
1
C++ 编辑器
输入
输出