문제
"맞았습니다."코드
#include "iostream"
using namespace std;
// 백준 2490 윷놀이
int a, result;
string str = "DCBAE";
void func(){
for(int i = 0; i < 3; i++){
for(int j = 0; j < 4; j++){
cin >> a;
result += a;
}
cout << str[result] << '\n';
a = result = 0;
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
func();
return 0;
}
리뷰
답으로 출력할 문자를 이어붙여서 문자열 "DCBAE" 로 만들었다.
1의 개수를 인덱스로 썼다.
0의 개수 | 1의 개수 | 문자 | |
도 | 1 | 3 | A |
개 | 2 | 2 | B |
걸 | 3 | 1 | C |
윷 | 4 | 0 | D |
모 | 0 | 4 | E |
728x90
'알고리즘 > 백준' 카테고리의 다른 글
숫자 백준 10093 c++ (0) | 2021.11.20 |
---|---|
일곱 난쟁이 백준 2309 c++ (0) | 2021.11.20 |
홀수 백준 2576 c++ (0) | 2021.11.19 |
주사위 세개 c++ 백준 2480 (0) | 2021.11.19 |
BFS 스페셜 저지 백준 16940 c++ (0) | 2020.11.05 |