공부하기/백준

[Java] 백준 풀기 10821 - 정수의 개

XEV 2023. 3. 17. 23:48

자바 백준 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;

public class Main {
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        
        int win_count = 0;
        for (int i = 0; i < 6; i++) {
            String game = sc.next();
            if (game.equals("W")) {
                win_count += 1;
            }
        }
        
        if (win_count >=5 ) {
            System.out.print("1");
        }
        else if (win_count >=3 ) {
            System.out.print("2");
        }
        else if (win_count >=1 ) {
            System.out.print("3");
        }
        else if (win_count == 0 ) {
            System.out.print("-1");
        }
        
    }
}