Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
40106 | wuxinyue | 鸡尾酒疗法 | C++ | 解答错误 | 1 MS | 256 KB | 432 | 2024-02-07 16:03:17 |
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int i=1; int a,b; cin>>a; cin>>b; int x=(a/b+a%b)*100; while(i<=n){ int c,d; cin>>c; cin>>d; int y=(c/d+c%d)*100; if (y-x>=5){ cout<<"better"<<endl; } else if (x-y>=5){ cout<<"worse"<<endl; } else{ cout<<"same"<<endl; } i++; } return 0; }