[문제 링크] : https://www.acmicpc.net/problem/2511
#include <iostream>
using namespace std;
int A[10], B[10];
int cntA = 0, cntB = 0;
char C = 'D';
int main(){
for(int i=0; i<10; i++){
cin >> A[i];
}
for(int i=0; i<10; i++){
cin >> B[i];
}
for(int i=0; i<10; i++){
if(A[i] > B[i]){
cntA += 3;
C = 'A';
}
else if(A[i] < B[i]){
cntB += 3;
C = 'B';
}
else{
cntA++;
cntB++;
}
}
cout << cntA << " " << cntB << "\n";
if(cntA > cntB){
cout << "A\n";
}
else if(cntA < cntB){
cout << "B\n";
}
else{
cout << C << "\n";
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 10822 - 더하기 (C++) (0) | 2024.09.27 |
---|---|
[알고리즘] 백준 21598 - SciComLove (C++) (0) | 2024.09.26 |
[알고리즘] 백준 18096 - Арифметическая магия (C++) (0) | 2024.09.24 |
[알고리즘] 백준 15000 - CAPS (C++) (0) | 2024.09.23 |
[알고리즘] 백준 21300 - Bottle Return (C++) (0) | 2024.09.22 |