자바 백준 10821번 브론즈 4 https://www.acmicpc.net/problem/14038 14038번: Tournament Selection The output will be either 1, 2, 3 (to indicate which Group the player should be placed in) or -1 (to indicate the player has been eliminated). www.acmicpc.net 문제 보기 분류: 구현 문제 풀기 입력 받는 문자에 대해 "W" 와 같으면 win_count 를 증가시킨다. 6 경기에 대해 모두 결과를 확인한 후, win_count 에 따라 조건을 나누어 필요한 문자를 출력한다. 코드 보기 import java.util.Scanner; ..