简单博弈论
2024-10-13 19:32:03
发布于:云南
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int T; cin >> T;
while(T--){
int a,b; cin >> a >> b;
if(a % (b + 1)) cout << "Win\n";
else cout << "Lose\n";
}
return 0;
}
这里空空如也
有帮助,赞一个