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
// PA 2024 1C - Kto wygrał?
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int main()
{
	ios_base::sync_with_stdio(0);
	int algosia[12];
	int bajtek[12];
	int score;
	
	for (int i = 0; i < 12; ++i) {
		algosia[i] = 0;
		bajtek[i] = 0;
	}
	
	for (int i = 0; i < 18; ++i) {
		cin >> score;
		++algosia[score];
		algosia[11] += score;
	}
	
	for (int i = 0; i < 18; ++i) {
		cin >> score;
		++bajtek[score];
		bajtek[11] += score;
	}
	
	for (int i = 11; i >= 0; --i) {
		if (algosia[i] > bajtek[i]) {
			cout << "Algosia" << endl;
			return 0;
		}
		if (algosia[i] < bajtek[i]) {
			cout << "Bajtek" << endl;
			return 0;
		}
	}
	
	cout << "remis" << endl;	
	return 0;
}