#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #ifdef __unix__ #include #else #include "bits\stdc++.h" #endif #include #include #include #include #include #define REP(i,a,b) for(i=a;i #define ll long long #define ull unsigned ll typedef long double ld; #define SQR(X) ( (X)*(X) ) #define CUBE(X) ( (X)*(X)*(X) ) ull pow(ull x,ull n) { ull res = 1; while(n > 0) { if(n&1) res = res * x; x = x * x; n >>= 1; } return res; } int main() { int i,j,k; int q; int d,x,t; ull tle = (int)1e15; cin >> q; while(cin >> d >> x >> t) { ull a=1; double n=x+d-1,r=x; if(r > n/2) r = n - r; for(i=0;i= tle) goto end; } end: if(a > t) puts("ZETUBOU"); else puts("AC"); } return 0; } // //signed main() { // int i,j,k,l; // cin.tie(0); // ios::sync_with_stdio(false); // bool test = 1; // return 0; //}