#include <iostream>
#include <algorithm>
using namespace std;
int a[20];
int b[20];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int sum_a = 0, sum_b = 0;
for(int i = 0; i < 18; i++)
{
cin >> a[i];
sum_a += a[i];
}
for(int i = 0; i < 18; i++)
{
cin >> b[i];
sum_b += b[i];
}
if(sum_a > sum_b)
{
cout << "Algosia";
}
else if (sum_a < sum_b)
cout << "Bajtek";
else
{
sort(a, a + 18);
sort(b, b + 18);
int i = 17;
while(i >= 0 && a[i] == b[i])
i--;
if(i < 0)
cout << "remis";
else
if(a[i] > b[i])
cout << "Algosia";
else
cout << "Bajtek";
}
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 46 47 | #include <iostream> #include <algorithm> using namespace std; int a[20]; int b[20]; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int sum_a = 0, sum_b = 0; for(int i = 0; i < 18; i++) { cin >> a[i]; sum_a += a[i]; } for(int i = 0; i < 18; i++) { cin >> b[i]; sum_b += b[i]; } if(sum_a > sum_b) { cout << "Algosia"; } else if (sum_a < sum_b) cout << "Bajtek"; else { sort(a, a + 18); sort(b, b + 18); int i = 17; while(i >= 0 && a[i] == b[i]) i--; if(i < 0) cout << "remis"; else if(a[i] > b[i]) cout << "Algosia"; else cout << "Bajtek"; } return 0; } |
English