Precreation contest files
This commit is contained in:
BIN
Codeforces/CodeforcesRound1034(Div3)/ABlackboardGame/cpp.out
Executable file
BIN
Codeforces/CodeforcesRound1034(Div3)/ABlackboardGame/cpp.out
Executable file
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
5
|
||||
2
|
||||
4
|
||||
5
|
||||
7
|
||||
100
|
||||
@@ -0,0 +1,5 @@
|
||||
Alice
|
||||
Bob
|
||||
Alice
|
||||
Alice
|
||||
Bob
|
||||
@@ -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