Recent Posts
Notice
No Rules Rules
윷놀이 (feat. 백준, 2490번) 본문
728x90
반응형
윷놀이
https://www.acmicpc.net/problem/2490
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <unordered_map>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
char ans[]{'E', 'A', 'B', 'C', 'D'};
for(register int i = 0, j, v, cnt; i < 3; ++i){
for(cnt = 0, j = 0; j < 4; ++j){
cin >> v;
if(v == 0)
++cnt;
}
cout << ans[cnt] << '\n';
}
return 0;
}
// *&)*@*
반응형
단순한 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
조별과제를 하려는데 조장이 사라졌다 (feat. 백준, 15727번) (0) | 2023.03.15 |
---|---|
국영수 (feat. 백준, 10825번) (0) | 2023.03.15 |
비밀번호 찾기 (feat. 백준, 17219번) (0) | 2023.03.14 |
막대기 (feat. 백준, 17608번) (0) | 2023.03.14 |
팝핀 소다 (feat. 백준, 27724번) (0) | 2023.03.14 |
Comments