记录编号 465461 评测结果 AAAAAAAAAA
题目名称 欧几里德的游戏 最终得分 100
用户昵称 GravatarJustWB 是否通过 通过
代码语言 C++ 运行时间 0.004 s
提交时间 2017-10-27 07:59:19 内存使用 0.31 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
inline long long get();
bool mmp(long long a,long long b,int test);
long long t,a,b;
int main()
{
	freopen("euclidgame.in","r",stdin);
	freopen("euclidgame.out","w",stdout);
	t=get();
	while(t--)
	{
		if(!mmp(get(),get(),0))printf("Ollie wins\n");
		else printf("Stan wins\n");
	}
	return 0;
}
bool mmp(long long a,long long b,int test)
{
	if(a<b)swap(a,b);
	while(true)
	{
		test^=1;
		if(a>2*b)return test;
		int t=a;a=b;b=t%b;
		if(!b)return test;
	}
}
inline long long get()
{
	long long t=0;char c=getchar(),j=1;
	while(!isdigit(c))
		if(c=='-')j=-1,c=getchar();
		else c=getchar();
	while(isdigit(c))
		t=(t<<3)+(t<<1)+c-'0',
		c=getchar();
	return j*t;
}