본문 바로가기
코딩테스트/프로그래머스 PCCP_PCCE

[PCCE 기출문제 Lv.0] 4번 / 병과분류

by 블루데이제이 2024. 10. 27.
728x90
반응형
문제 설명

퓨쳐종합병원에서는 접수한 환자가 진료받을 병과에 따라 자동으로 환자 코드를 부여해 주는 프로그램이 있습니다. 환자 코드의 마지막 네 글자를 보면 환자가 어디 병과에서 진료를 받아야 할지 알 수 있습니다. 예를 들어 환자의 코드가 "_eye"로 끝난다면 안과를, "head"로 끝난다면 신경외과 진료를 보게 됩니다. 환자 코드의 마지막 글자에 따른 병과 분류 기준은 다음과 같습니다.

마지막 글자 병과
"_eye" "Ophthalmologyc"
"head" "Neurosurgery"
"infl" "Orthopedics"
"skin" "Dermatology"

 

환자의 코드를 나타내는 문자열 code를 입력받아 위 표에 맞는 병과를 출력하도록 빈칸을 채워 코드를 완성해 주세요. 위 표의 단어로 끝나지 않는다면 "direct recommendation"를 출력합니다.

제한사항
4 ≤ code의 길이 ≤ 20
code는 영어 소문자와 숫자, 언더바("_")로 이루어져 있습니다.
입출력 예
입력 #1
dry_eye

출력 #1
Ophthalmologyc

입력 #2
pat23_08_20_head

출력 #2
Neurosurgery
입출력 설명
입출력 예 #1
code가 "_eye"로 끝나기 때문에 "Ophthalmologyc"를 출력합니다.

입출력 예 #2
code가 "head"로 끝나기 때문에 "Neurosurgery"를 출력합니다.

내 풀이
Java
import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String code = sc.next();
        String lastFourWords = code.substring(code.length()-4, code.length());

        if(lastFourWords.equals(          )){
            System.out.println("Ophthalmologyc");
        }
        else if(                           ){
            System.out.println("Neurosurgery");
        }
        else if(                           ){
            System.out.println("Orthopedics");
        }
                                            {
            System.out.println("Dermatology");
        }
        
			       {            
            System.out.println("direct recommendation");
        }
    }
}

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String code = sc.next();
        String lastFourWords = code.substring(code.length()-4, code.length());

        if(lastFourWords.equals("_eye")){
            System.out.println("Ophthalmologyc");
        }
        else if(lastFourWords.equals("head")){
            System.out.println("Neurosurgery");
        }
        else if(lastFourWords.equals("infl")){
            System.out.println("Orthopedics");
        }        
		else if(lastFourWords.equals("skin")){
            System.out.println("Dermatology");
        }        
		else{
            System.out.println("direct recommendation");
        }
    }
}
Python
code = input()
last_four_words = code[-4:]

if last_four_words ==         :
    print("Ophthalmologyc")
elif               :
    print("Neurosurgery")
elif               :
    print("Orthopedics")
                   :
    print("Dermatology")
         :
    print("direct recommendation")

code = input()
last_four_words = code[-4:]

if last_four_words == "_eye":
    print("Ophthalmologyc")
elif last_four_words == "head":
    print("Neurosurgery")
elif last_four_words == "infl":
    print("Orthopedics")
elif last_four_words == "skin":
    print("Dermatology")
else:
    print("direct recommendation")

https://school.programmers.co.kr/learn/courses/30/lessons/340204

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr

 

728x90
반응형