본문 바로가기
알고리즘 이전/프로그래머스 1레벨

2016년

by hoshi03 2023. 9. 18.

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

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

노가다로 구했는데 2016년 한정인 경우 말고 다른 경우엔 Calender 클래스를 이용하자!

import java.util.*;

public class Solution {
    public String solution(int a, int b) {
        String answer = "";
        int[] mon = new int[13];
        int tmp = 0;
        for (int i = 1;  i < mon.length; i++){
            if (i <= 7) {
                if (i % 2 == 0) mon[i] = 30;
                else mon[i] = 31;
            }
            else {
                if (i % 2 == 0) mon[i] = 31;
                else mon[i] = 30;
            }
        }
        mon[2] = 29;
        for (int i = 1; i < a; i++) tmp += mon[i];
        tmp += b;
        System.out.println(tmp);
        switch (tmp % 7){
            case(0): answer = "THU";
                break;
            case(1): answer = "FRI";
                break;
            case(2): answer = "SAT";
                break;
            case(3): answer = "SUN";
                break;
            case(4): answer = "MON";
                break;
            case(5): answer = "TUE";
                break;
            case(6): answer = "WED";
                break;
        }
        return answer;
    }

    public static void main(String[] args) {
        Solution T = new Solution();
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int m = in.nextInt();

        System.out.println(T.solution(n,m));
    }
}

 

'알고리즘 이전 > 프로그래머스 1레벨' 카테고리의 다른 글

문자열 내림차순 정렬하기  (0) 2023.09.20
문자열 내 마음대로 정렬하기  (0) 2023.09.19
나누어 떨어지는 숫자 배열  (0) 2023.09.19
가운데 글자 가져오기  (0) 2023.09.18
폰켓몬  (0) 2023.09.18