Precreation contest files

This commit is contained in:
2026-02-11 11:28:23 +07:00
parent 0a8ea477bb
commit cb9f7cab30
134 changed files with 1848 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,6 @@
5
2
4
5
7
100

View File

@@ -0,0 +1,5 @@
Alice
Bob
Alice
Alice
Bob

View File

@@ -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";
}
}