提交时间:2024-02-08 18:46:27

运行 ID: 40243

#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int i=1; double a,b; cin>>a; cin>>b; int x=(a/b+a%b)*100; while(i<=n-1){ int c,d; cin>>c; cin>>d; int y=(c/d+c%d)*100; if (y-x>5){ cout<<"same"<<endl; } else if (x-y>5){ cout<<"worse"<<endl; } else{ cout<<"better"<<endl; } i++; } return 0; }