我的代码
#include<bits/stdc++.h>
using namespace std;
long long t=0,n=0,x=0,y=0;
int main(){
cin>>t;
while(t--){
cin>>n>>x>>y;
if(y<x){
cout<<ceil(n*1.0/y)<<endl;
}else{
cout<<ceil(n*1.0/x)<<endl;
}
}
return 0;
}
#include<bits/stdc++.h>
using namespace std;
long long t=0,n=0,x=0,y=0;
int main(){
cin>>t;
while(t--){
cin>>n>>x>>y;
if(y<x){
cout<<ceil(n*1.0/y)<<endl;
}else{
cout<<ceil(n*1.0/x)<<endl;
}
}
return 0;
}