洛谷2252 取石子游戲ios
裸的威佐夫博弈spa
#include<iostream> #include<cmath> using namespace std; const double phi=(sqrt(5)+1)/2; int a,b; int main() { ios::sync_with_stdio(false); while(cin>>a>>b) { if(a>b)swap(a,b); int A=abs(a-b)*phi; if(A==a)cout<<0<<endl; else cout<<1<<endl; } return 0; }