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
50
51
52
53
54
55
#include <bits/stdc++.h>

using namespace std;


string algosia = "Algosia";
string bajtek = "Bajtek";


int main() {
        ios_base::sync_with_stdio(false);
    int algosia_result = 0;
    int algosia_count[11];
    int bajtek_result = 0;
    int bajtek_count[11];
    for (int i = 0; i < 11; i++) {
        algosia_count[i] = 0;
        bajtek_count[i] = 0;
    }

    int tmp;
    for (int i = 0; i < 18; i++) {
        cin >> tmp;
        algosia_result+=tmp;
        algosia_count[tmp]++;
    }

    for (int i = 0; i < 18; i++) {
        cin >> tmp;
        bajtek_result+=tmp;
        bajtek_count[tmp]++;
    }

    if (algosia_result > bajtek_result){
        cout << algosia;
        return 0;
    }
    else if (bajtek_result > algosia_result) {
        cout << bajtek;
        return 0;
    } else {
        for (int i = 10; i >=1; i--) {
            if (algosia_count[i] > bajtek_count[i]) {
                cout << algosia;
                return 0;
            } else if (algosia_count[i] < bajtek_count[i]) {
                cout << bajtek;
                return 0;
            }
        }
    }
    cout << "remis";
    return 0;  

}