#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
int main()
{
int t,h,m,s;
cin>>t;
while(t--)
{
cin>>h>>m>>s;
if(h>12) //注意还有h>24的时候
h-=12;
double ans=fabs((h*30+0.5*m+0.5/60*s)-(m*6+s*0.1));
if(ans>180) //夹角不可能超过180°
ans=360-ans;
printf("%d\n",(int)ans);
}
return 0;
}