qwexqw

B2065 鸡尾酒疗法

yinchenghao2012 @ 2024-01-24 08:54:36

#include<cstdio>
using namespace std;
int main()
{
    int n,x,y;
    double t1,t2;
    scanf("%d%d%d",&n,&x,&y);
    t1=y*1.0/x;
    for(int i=1;i<=n-1;i++)
    {
        scanf("%d%d",&x,&y);
        t2=y*1.0/x;
        if(t2-t1>0.05)
        {
            printf("better");
        }
        else if(t1-t2>0.05)
            {   
            printf("worse");
            }
            else 
            {
            printf("same");
            } 
    }
    return 0;
}

|