공부하기/백준

[Java] 백준 풀기 3003 - 킹, 퀸, 룩, 비숍, 나이트, 폰

XEV 2023. 6. 28. 23:36

자바 백준 3003번

브론즈 5

https://www.acmicpc.net/problem/3003

 

3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰

첫째 줄에 동혁이가 찾은 흰색 킹, 퀸, 룩, 비숍, 나이트, 폰의 개수가 주어진다. 이 값은 0보다 크거나 같고 10보다 작거나 같은 정수이다.

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 수학, 구현, 사칙연산

 

 

 

 

 

문제 풀기

주어진 체스 피스의 개수를 array 에 입력 받는다.

온전한 체스 피스의 개수를 가진 array 인 requiredPieces 를 초기값과 함께 지정한다.

 

각 array 의 동일한 index 의 value 를 비교하여 그 차를 구하고 순차적으로 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int[] currentPieces = new int[6];
        
        for (int i = 0; i < 6; i++) {
            currentPieces[i] = sc.nextInt();
        }
        
        determineTheNumberOfChessPiecesNeeded(currentPieces);
    }
    
    public static void determineTheNumberOfChessPiecesNeeded(int[] currentPieces) {
        int[] requiredPieces = {1, 1, 2, 2, 2, 8};
        
        for (int i = 0; i < 6; i++) {
            int difference = requiredPieces[i] - currentPieces[i];
            System.out.print(difference + " ");
        }
    }
    
}