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
43
44
45
46
47
48
49
#include <bits/stdc++.h>

using llu = unsigned long long;
using ll = long long;

#define int ll
using namespace std;

int32_t main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    array<int, 11> cnt_a, cnt_b;
    cnt_a.fill(0);
    cnt_b.fill(0);
    int sum_a = 0, sum_b = 0;
    for (int i = 0; i < 18; i++) {
        int x;
        cin >> x;
        sum_a += x;
        cnt_a[10 - x]++;
    }
    for (int i = 0; i < 18; i++) {
        int x;
        cin >> x;
        sum_b += x;
        cnt_b[10 - x]++;
    }
    if (sum_a > sum_b) {
        cout << "Algosia\n";
    }
    else if (sum_b > sum_a) {
        cout << "Bajtek\n";
    }
    else {
        auto cmp = cnt_a <=> cnt_b;
        if (cmp == strong_ordering::greater) {
            cout << "Algosia\n";
        }
        else if (cmp == strong_ordering::less) {
            cout << "Bajtek\n";
        }
        else {
            cout << "remis\n";
        }
    }
    return 0;
}