Algorithm


C. Sanatorium
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasiliy spent his vacation in a sanatorium, came back and found that he completely forgot details of his vacation!

Every day there was a breakfast, a dinner and a supper in a dining room of the sanatorium (of course, in this order). The only thing that Vasiliy has now is a card from the dining room contaning notes how many times he had a breakfast, a dinner and a supper (thus, the card contains three integers). Vasiliy could sometimes have missed some meal, for example, he could have had a breakfast and a supper, but a dinner, or, probably, at some days he haven't been at the dining room at all.

Vasiliy doesn't remember what was the time of the day when he arrived to sanatorium (before breakfast, before dinner, before supper or after supper), and the time when he left it (before breakfast, before dinner, before supper or after supper). So he considers any of these options. After Vasiliy arrived to the sanatorium, he was there all the time until he left. Please note, that it's possible that Vasiliy left the sanatorium on the same day he arrived.

According to the notes in the card, help Vasiliy determine the minimum number of meals in the dining room that he could have missed. We shouldn't count as missed meals on the arrival day before Vasiliy's arrival and meals on the departure day after he left.

Input

The only line contains three integers bd and s (0 ≤ b, d, s ≤ 1018,  b + d + s ≥ 1) — the number of breakfasts, dinners and suppers which Vasiliy had during his vacation in the sanatorium.

Output

Print single integer — the minimum possible number of meals which Vasiliy could have missed during his vacation.

Examples
input
Copy
3 2 1
output
Copy
1

input
Copy
1 0 0
output
Copy
0

input
Copy
1 1 1
output
Copy
0

input
Copy
1000000000000000000 0 1000000000000000000
output
Copy
999999999999999999


Note

In the first sample, Vasiliy could have missed one supper, for example, in case he have arrived before breakfast, have been in the sanatorium for two days (including the day of arrival) and then have left after breakfast on the third day.

In the second sample, Vasiliy could have arrived before breakfast, have had it, and immediately have left the sanatorium, not missing any meal.

In the third sample, Vasiliy could have been in the sanatorium for one day, not missing any meal.

 



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <algorithm>

using namespace std;

int main() {
	long long b, d, s;
	cin >> b >> d >> s;
	long long maxI = max(b, max(d, s));

	if ((b == d && d == s && s == b)) {
		cout << 0 << endl;
	} else if (d == s && (b - 1 == s || b + 1 == s)) {
		cout << 0 << endl;
	} else if (b == d && (s - 1 == d || s + 1 == d)) {
		cout << 0 << endl;
	} else if (b == s && (d - 1 == b || d + 1 == b)) {
		cout << 0 << endl;
	} else if (maxI == b) {
		if (b == d) {
			cout << b - s - 1 << endl;
		} else if (b == s) {
			cout << b - d - 1 << endl;
		} else {
			b--;
			cout << b - d + b - s << endl;
		}
	} else if (maxI == d) {
		if (d == b) {
			cout << d - s - 1 << endl;
		} else if (d == s) {
			cout << d - b - 1 << endl;
		} else {
			d--;
			cout << d - b + d - s << endl;
		}
	} else {
		if (s == b) {
			cout << s - d - 1 << endl;
		} else if (s == d) {
			cout << s - b - 1 << endl;
		} else {
			s--;
			cout << s - b + s - d << endl;
		}
	}

	return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
3 2 1

Output

x
+
cmd
1
Advertisements

Demonstration


Codeforces Solution-Sanatorium-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+