题解c++版
2025-11-29 11:14:05
发布于:山东
5阅读
0回复
0点赞
[链接描述](#include <iostream>
using namespace std;
int main() {
int q;
cin >> q;
for(int i = 0; i < q; i++) {
long long n, m;
cin >> n >> m;
if (n % (m + 1) == 0) {
cout << "Bob" << endl;
} else {
cout << "Alice" << endl;
}
}
return 0;
})
给个赞吧
这里空空如也




有帮助,赞一个