Precreation contest files
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
int t;
|
||||
cin >> t;
|
||||
while (t--) {
|
||||
int n;
|
||||
cin >> n;
|
||||
if (!(n & ((1 << 2) - 1)))
|
||||
cout << "Bob\n";
|
||||
else
|
||||
cout << "Alice\n";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user