#include<bits/stdc++.h>
using namespace std;
int a[11],b[11],wa,wb,x;
int main()
{
for(int i=0; i<18; i++)
{
cin>>x;
wa+=x;
a[x]++;
}
for(int i=0; i<18; i++)
{
cin>>x;
wb+=x;
b[x]++;
}
if(wa>wb)cout<<"Algosia";
else if(wb>wa)cout<<"Bajtek";
else
{
for(int i=10; i>=1; i--)
{
if(a[i]>b[i]){cout<<"Algosia"; return 0;}
else if(b[i]>a[i]){cout<<"Bajtek"; return 0;}
}
cout<<"remis";
}
}
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 | #include<bits/stdc++.h> using namespace std; int a[11],b[11],wa,wb,x; int main() { for(int i=0; i<18; i++) { cin>>x; wa+=x; a[x]++; } for(int i=0; i<18; i++) { cin>>x; wb+=x; b[x]++; } if(wa>wb)cout<<"Algosia"; else if(wb>wa)cout<<"Bajtek"; else { for(int i=10; i>=1; i--) { if(a[i]>b[i]){cout<<"Algosia"; return 0;} else if(b[i]>a[i]){cout<<"Bajtek"; return 0;} } cout<<"remis"; } } |
English