题解 1198: 取石子游戏

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1198: 取石子游戏

摘要:核心:    威佐夫博弈 a == (int)((b - a) * ((sqrt(5) + 1) / 2)):先手输,其他则先手赢代码:from math import sqrt while T……

取石子游戏

摘要:解题思路:注意事项:参考代码:from math import sqrttry:    while True:        a,b=map(int,input().split())        i……