#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef pair pii; typedef pair pll; const int INF = 1e9; const ll LINF = 1e18; template ostream& operator << (ostream& out,const pair& o){ out << "(" << o.first << "," << o.second << ")"; return out; } template ostream& operator << (ostream& out,const vector& V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; } template ostream& operator << (ostream& out,const vector >& Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; } template ostream& operator << (ostream& out,const map& mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; } templatevector make_v(size_t a){return vector(a);} templateauto make_v(size_t a,Ts... ts){return vector(ts...))>(a,make_v(ts...));} template typename enable_if::value==0>::type fill_v(T &t,const V &v){t=v;} template typename enable_if::value!=0>::type fill_v(T &t,const V &v){for(auto &e:t) fill_v(e,v);} /* 問題文============================================================ ================================================================= 解説============================================================= ================================================================ */ bool isKadomatsu(ll A,ll B,ll C){ if(A == B || B == C || C == A) return false; vector vs = {A,B,C}; sort(vs.begin(),vs.end()); if(vs[1] == A || vs[1] == C) return true; return false; } template Type solve(Type res = Type()){ ll T; cin >> T; while(T--){ ll A,B,C; cin >> A >> B >> C; if(isKadomatsu(A, B, C)){ cout << 0 << endl; continue; } ll ans = LINF; if(A < C) swap(A,C); {// 1 3 2 ll tA = A, tB = B, tC = C; ll T = 0; if(tA <= tC){ T += tC-tA+1; tC = tA-1; } if(tC <= tB){ T += tB-tC+1; tB = tC-1; } if(tA >= 1 && tB >= 1 && tC >= 1){ ans = min(ans,T); } } {// 2 3 1 ll tA = A, tB = B, tC = C; ll T = 0; if(tC <= tA){ T += tA-tC+1; tA = tC-1; } if(tA <= tB){ T += tB-tA+1; tB = tA-1; } if(tA >= 1 && tB >= 1 && tC >= 1){ ans = min(ans,T); } } {// 2 1 3 ll tA = A, tB = B, tC = C; ll T = 0; if(tB <= tA){ T += tA-tB+1; tA = tB-1; } if(tA <= tC){ T += tC-tA+1; tC = tA-1; } if(tA >= 1 && tB >= 1 && tC >= 1){ ans = min(ans,T); } } {// 3 1 2 ll tA = A, tB = B, tC = C; ll T = 0; if(tB <= tC){ T += tC-tB+1; tC = tB-1; } if(tC <= tA){ T += tA-tC+1; tA = tC-1; } if(tA >= 1 && tB >= 1 && tC >= 1){ ans = min(ans,T); } } if(ans == LINF) ans = -1; cout << ans << endl; } return res; } int main(void) { cin.tie(0); ios::sync_with_stdio(false); solve(0); // cout << fixed << setprecision(12) << solve() << endl; return 0; }