分析:
赛时题解
每次尽可能用银的装满容器 然后填一个金的 每填一次容量就会减
1
1
1
所以用
x
x
x个金木板可以填的银木板数 可以等差数列求和
看剩下的银木板和金木板能否填满容器即可
CODE:
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#define reg register
using namespace std;
typedef long long ll;
int T;
int main(){
scanf("%d",&T);
while(T--)
{
ll x,y,z,sum=0;
scanf("%lld%lld%lld",&x,&y,&z);
if(z<x){
puts("Merry");
continue;
}
ll a=z-x,b=z-1;
sum=((a+b)*x)>>1;
if(y-sum+x<=z) puts("Renko");
else puts("Merry");
}
return 0;
}