인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

인프런 커뮤니티 질문&답변

kapella000님의 프로필 이미지
kapella000

작성한 질문수

자바(Java) 알고리즘 문제풀이 입문: 코딩테스트 대비

3. 가위바위보

채점 사이트 무한 채점중 문제

작성

·

313

0

Intellij 에서 답 잘 나오는데 채점사이트에서는 계속 채점중이라고 나옵니다.. 어떤 이유인지 알 수 있을까요?

import java.util.Scanner;

public class Question2_3 {

    // 1: 가위
    // 2: 바위
    // 3: 보
    //   a    :   b
    //   1    :   3
    //   2    :   1
    //   3    :   2

    public static char[] solution(int count, int[] a, int[] b) {
        char[] answer = new char[count];

        for(int i=0; i<count; i++) {
            if(a[i] == b[i]) {
                answer[i] = 'D';
                break;
            }

            if(a[i] == 1 && b[i] == 3) {
                answer[i] = 'A';
            } else if(a[i] == 2 && b[i] == 1) {
                answer[i] = 'A';
            } else if(a[i] == 3 && b[i] == 2) {
                answer[i] = 'A';
            } else {
                answer[i] = 'B';
            }
        }

        return answer;
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int count = scanner.nextInt();
        int[] a = new int[count];
        int[] b = new int[count];

        for(int i=0; i<count; i++) {
            a[i] = scanner.nextInt();
        }

        for(int i=0; i<count; i++) {
            b[i] = scanner.nextInt();
        }

        for(int i=0; i<count; i++) {
            System.out.println(solution(count, a, b)[i]);
        }
    }
}

답변 1

0

kapella000님의 프로필 이미지
kapella000
질문자

사이트에서는 Main으로 이름을 바꿧습니다

kapella000님의 프로필 이미지
kapella000

작성한 질문수

질문하기