Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
40639 | 王shizhao | 鸡尾酒疗法 | C++ | 通过 | 1 MS | 244 KB | 380 | 2024-02-14 20:41:01 |
#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; }