#include <bits/stdc++.h> using namespace std; int Algosia[11]; int Bajtek[11]; int sum_Algosia=0; int sum_Bajtek=0; int wypisz_szczegol() { for(int i=10; i>=0; i--) { if(Algosia[i]>Bajtek[i]) { cout<<"Algosia"<<endl; return 0; } if(Bajtek[i]>Algosia[i]) { cout<<"Bajtek"<<endl; return 0; } } cout<<"Remis"<<endl; return 0; } int main() { int pom; for(int i=0; i<18; i++) { cin>>pom; sum_Algosia+=pom; Algosia[pom]++; } for(int i=0; i<18; i++) { cin>>pom; sum_Bajtek+=pom; Bajtek[pom]++; } if(sum_Algosia<sum_Bajtek) { cout<<"Bajtek"<<endl; } else { if(sum_Algosia>sum_Bajtek) { cout<<"Algosia"<<endl; } else { wypisz_szczegol(); } } }
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 49 50 51 52 53 54 55 56 57 58 59 | #include <bits/stdc++.h> using namespace std; int Algosia[11]; int Bajtek[11]; int sum_Algosia=0; int sum_Bajtek=0; int wypisz_szczegol() { for(int i=10; i>=0; i--) { if(Algosia[i]>Bajtek[i]) { cout<<"Algosia"<<endl; return 0; } if(Bajtek[i]>Algosia[i]) { cout<<"Bajtek"<<endl; return 0; } } cout<<"Remis"<<endl; return 0; } int main() { int pom; for(int i=0; i<18; i++) { cin>>pom; sum_Algosia+=pom; Algosia[pom]++; } for(int i=0; i<18; i++) { cin>>pom; sum_Bajtek+=pom; Bajtek[pom]++; } if(sum_Algosia<sum_Bajtek) { cout<<"Bajtek"<<endl; } else { if(sum_Algosia>sum_Bajtek) { cout<<"Algosia"<<endl; } else { wypisz_szczegol(); } } } |