1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <bits/stdc++.h>

#define pb push_back

using namespace std;

const int TASKS = 18;

void prepareData(vector<int> &points, int &total)
{
    int point;
    for (int i = 0; i < TASKS; ++i) {
        cin >> point;
        points[point]++;
        total += point;
    }
}

int main()
{
    ios_base::sync_with_stdio(0);

    vector<int> pointsA(TASKS, 0);
    vector<int> pointsB(TASKS, 0);
    int totalA = 0;
    int totalB = 0;

    prepareData(pointsA, totalA);
    prepareData(pointsB, totalB);

    pointsA.pb(totalA);
    pointsB.pb(totalB);

    while (!pointsA.empty() && pointsA.back() == pointsB.back()) {
        pointsA.pop_back();
        pointsB.pop_back();
    }

    if (pointsA.empty()) cout << "remis";
    else if (pointsA.back() > pointsB.back()) cout << "Algosia";
    else cout << "Bajtek";
}