#include <bits/stdc++.h> using namespace std; int main() { unsigned long long n,x,y,h; cin>>n; for(int i=1;i<=n;i++) {cin>>h>>x>>y; if((x>=h&&y<h)||y==0||(x+y*2<h&&x>=h/2)) cout<<"No"<<endl; else cout<<"Yes"<<endl;} return 0; }
#3和#6没过