返回小组 开始 2023-10-06 09:10:00

B第二测试

结束 2023-10-06 11:10:00
Contest is over.
当前 2024-11-24 10:41:07

532

include<bits/stdc++.h>

using namespace std; int main(){

int A,B,a,b,L;
cin>>A>>B>>L;
double cha=1e8;
for(int i=0; i<=L; i++){
	for(int j=1; j<=L; j++){
		double x=(double)i/j;
		double y=(double)A/B;
		if(x>=y&&x-y<cha){
			a=i;
			b=j;
			cha=x-y;
		}
	}
}			
cout<<a<<' '<<b;
return 0;

}


lelou  •  1年前

比赛已结束。