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
56
57
58
59
60
61
62
63
64
#include <bits/stdc++.h>

using namespace std;

int t1[18];
int t2[18];

vector<pair<int, int>> punkty;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    
    int s1=0, s2=0;
    
    for(int i=0;i<18;i++)
    {
        cin>>t1[i];
        s1+=t1[i];  
    }
    for(int i=0;i<18;i++)
    {
        cin>>t2[i];
        s2+=t2[i];  
    }
    for(int i=0;i<11;i++)
    {
        int a=0, b=0;
        for(int j=0;j<18;j++)
        {
            if(t1[j]==i)
                a++;
            if(t2[j]==i)
                b++;
        }
        punkty.push_back(make_pair(a,b));
    }
    
    if(s1>s2) cout<<"Algosia";
    else if(s1<s2) cout<<"Bajtek";
    else
    {
        bool remis = true;
        for(int i=10; i>=0; i--)
        {
            if(punkty[i].first>punkty[i].second)
            {
                cout<<"Algosia";
                remis = false;
                break;
            }
            else if(punkty[i].first<punkty[i].second)
            {
                cout<<"Bajtek";
                remis = false;
                break;
            }
        }
        if(remis) cout<<"remis";
    }
    
    return 0;
}