#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define ssize(a) ((int)(a.size()))
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int n = 18;
vector<vector<int>>ile(2, vector<int>(11));
int suma[2] = {0, 0};
for(int i = 0; i < 2; ++i)
for(int j = 0; j < n; ++j)
{
int a;
cin>>a;
suma[i] += a;
++ile[i][a];
}
if(suma[0] > suma[1])
{
cout<<"Algosia";
return 0;
}
if(suma[0] < suma[1])
{
cout<<"Bajtek";
return 0;
}
for(int i = 10; i >= 0; --i)
if(ile[0][i] > ile[1][i])
{
cout<<"Algosia";
return 0;
}
else if(ile[0][i] < ile[1][i])
{
cout<<"Bajtek";
return 0;
}
cout<<"remis";
return 0;
}
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 | #include<bits/stdc++.h> using namespace std; typedef long long ll; #define ssize(a) ((int)(a.size())) int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n = 18; vector<vector<int>>ile(2, vector<int>(11)); int suma[2] = {0, 0}; for(int i = 0; i < 2; ++i) for(int j = 0; j < n; ++j) { int a; cin>>a; suma[i] += a; ++ile[i][a]; } if(suma[0] > suma[1]) { cout<<"Algosia"; return 0; } if(suma[0] < suma[1]) { cout<<"Bajtek"; return 0; } for(int i = 10; i >= 0; --i) if(ile[0][i] > ile[1][i]) { cout<<"Algosia"; return 0; } else if(ile[0][i] < ile[1][i]) { cout<<"Bajtek"; return 0; } cout<<"remis"; return 0; } |
English