[문제 링크] : https://www.acmicpc.net/problem/24736
#include <iostream>
using namespace std;
int Cnt[2], Arr[5];
int main(){
for(int i=0; i<2; i++){
for(int j=0; j<5; j++){
cin >> Arr[j];
}
Cnt[i] = Arr[0] * 6 + Arr[1] * 3 + Arr[2] * 2 + Arr[3] + Arr[4] * 2;
}
for(int i=0; i<2; i++){
cout << Cnt[i] << " ";
}
cout << "\n";
return 0;
}
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 11816 - 8진수, 10진수, 16진수 (C++) (0) | 2024.11.17 |
---|---|
[알고리즘] 백준 14656 - 조교는 새디스트야!! (C++) (0) | 2024.11.16 |
[알고리즘] 백준 28701 - 세제곱의 합 (C++) (0) | 2024.11.14 |
[알고리즘] 백준 10163 - 색종이 (C++) (0) | 2024.11.13 |
[알고리즘] 백준 6778 - Which Alien? (C++) (0) | 2024.11.12 |