#include <iostream>
int main()
{
unsigned int a_sum = 0, b_sum = 0;
unsigned int a_pr_cnt[11] = {0}, b_pr_cnt[11] = {0}; // Liczba zadań o określonych wynikach.
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
for (int i = 0; i < 18; i++)
{
unsigned int sc;
std::cin >> sc;
a_sum += sc;
a_pr_cnt[sc]++;
}
for (int i = 0; i < 18; i++)
{
unsigned int sc;
std::cin >> sc;
b_sum += sc;
b_pr_cnt[sc]++;
}
if (a_sum > b_sum)
std::cout << "Algosia\n";
else if (a_sum < b_sum)
std::cout << "Bajtek\n";
else
{
int i;
for (i = 10; i > 0; i--)
{
if (a_pr_cnt[i] > b_pr_cnt[i])
{
std::cout << "Algosia\n";
break;
}
else if (a_pr_cnt[i] < b_pr_cnt[i])
{
std::cout << "Bajtek\n";
break;
}
}
if (i == 0)
std::cout << "remis\n";
}
// system("Pause");
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 48 | #include <iostream> int main() { unsigned int a_sum = 0, b_sum = 0; unsigned int a_pr_cnt[11] = {0}, b_pr_cnt[11] = {0}; // Liczba zadań o określonych wynikach. std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); for (int i = 0; i < 18; i++) { unsigned int sc; std::cin >> sc; a_sum += sc; a_pr_cnt[sc]++; } for (int i = 0; i < 18; i++) { unsigned int sc; std::cin >> sc; b_sum += sc; b_pr_cnt[sc]++; } if (a_sum > b_sum) std::cout << "Algosia\n"; else if (a_sum < b_sum) std::cout << "Bajtek\n"; else { int i; for (i = 10; i > 0; i--) { if (a_pr_cnt[i] > b_pr_cnt[i]) { std::cout << "Algosia\n"; break; } else if (a_pr_cnt[i] < b_pr_cnt[i]) { std::cout << "Bajtek\n"; break; } } if (i == 0) std::cout << "remis\n"; } // system("Pause"); return 0; } |
English