| Codeforces Round 1114 (Div. 3) |
|---|
| Finished |
Alice, Bob, and Charlie are playing a game with tokens. They start with $$$a$$$, $$$b$$$, and $$$c$$$ tokens, respectively.
The game is played in rounds. Before the beginning of each round, they check the number of tokens everyone has:
Given the starting tokens $$$a$$$, $$$b$$$, and $$$c$$$, determine exactly how many rounds the game will last before it ends.
The first line contains a single integer $$$t$$$ ($$$1 \le t \le 10^3$$$) — the number of test cases.
Each test case consists of a single line containing three integers $$$a$$$, $$$b$$$, and $$$c$$$ ($$$1 \le a, b, c \le 10$$$).
For each test case, output a single integer — the number of rounds the game will last before it ends.
61 2 34 6 13 3 71 7 106 1 91 1 1
120330
In the first test case:
The game ended after $$$1$$$ round, so the answer is $$$1$$$.
In the second test case, the game is played as follows:
The game lasted $$$2$$$ rounds.
In the third test case, two players already have the same number of tokens. So the answer is $$$0$$$ since no rounds were played.
| Name |
|---|


