Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38955 奚晨瑞 鸡尾酒疗法 C++ 通过 1 MS 252 KB 380 2024-01-29 08:22:41

Tests(1/1):


#include<iostream> using namespace std; int main() { int n; cin>>n; int a1,b1; cin>>a1>>b1; float c1=1.0*b1/a1; for(int i=1;i<n;i++){ int a,b; cin>>a>>b; float c=1.0*b/a; float cn=c1-c; if(cn>0.05){ cout<<"worse"<<endl; } else if(cn<-0.05){ cout<<"better"<<endl; } else{ cout<<"same"<<endl; } } return 0; }


测评信息: