#include using namespace std; int A[5]; int solve(int a,int b,int c){ int hp1=1000,hp2=1000,hp3=1000; int res=0; while(hp1>0&&hp2>0){ ++res; hp1-=A[b]; hp2-=A[a]; } while(hp1>0&hp3>0){ ++res; hp1-=A[c]; hp3-=A[a]; } hp1=1000,hp2=1000,hp3=1000; int ans=0; while(hp1>A[b]&&hp2>A[a]){ ++ans; hp1-=A[b]; hp2-=A[a]; } while(hp2>0&&hp3>0){ ++ans; hp2-=A[c]; hp3-=A[b]; } while(hp1>0&&hp3>0){ ++ans; hp1-=A[c]; hp3-=A[a]; } return min(ans,res); } int main(){ int T; cin>>T; int hp1,hp2,hp3,ans; while(T--){ for(int i=1;i<=3;i++)scanf("%d",&A[i]); sort(A+1,A+4); ans=solve(3,2,1); ans=min(ans,solve(3,1,2)); ans=min(ans,solve(2,1,3)); printf("%d\n",ans); } return 0; }