Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38321 | yuzhengxun | 鸡尾酒疗法 | C++ | 解答错误 | 1 MS | 244 KB | 331 | 2024-01-26 15:58:25 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int a,b; cin>>a>>b; float x=b*1.0/a; for(int i=2;i<=n;i++){ cin>>a>>b; float y=b*1.0/a; if(x==y){ cout<<"same"<<endl; }else if((y-x)>0.05){ cout<<"better"<<endl; }else{ cout<<"worse"<<endl; } } return 0; }