#include <iostream> #include <string> #define N 18 using namespace std; int t; int a[12], b[12]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); for (int i = 0; i < N; i++) { cin >> t; a[t]++; a[11] += t; } for (int i = 0; i < N; i++) { cin >> t; b[t]++; b[11] += t; } t = 11; while (t >= 0 && a[t] == b[t]) t--; if (t < 0) { cout << "remis\n"; } else if (a[t] > b[t]) { cout << "Algosia\n"; } else { cout << "Bajtek\n"; } 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 | #include <iostream> #include <string> #define N 18 using namespace std; int t; int a[12], b[12]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); for (int i = 0; i < N; i++) { cin >> t; a[t]++; a[11] += t; } for (int i = 0; i < N; i++) { cin >> t; b[t]++; b[11] += t; } t = 11; while (t >= 0 && a[t] == b[t]) t--; if (t < 0) { cout << "remis\n"; } else if (a[t] > b[t]) { cout << "Algosia\n"; } else { cout << "Bajtek\n"; } return 0; } |