비버놀로지

[Programmers 프로그래머스] 12901 2016년 본문

ALGORITM/JAVA

[Programmers 프로그래머스] 12901 2016년

KUNDUZ 2021. 1. 7. 10:23
728x90

programmers.co.kr/learn/courses/30/lessons/12901

 

코딩테스트 연습 - 2016년

2016년 1월 1일은 금요일입니다. 2016년 a월 b일은 무슨 요일일까요? 두 수 a ,b를 입력받아 2016년 a월 b일이 무슨 요일인지 리턴하는 함수, solution을 완성하세요. 요일의 이름은 일요일부터 토요일까

programmers.co.kr

총 12달이기 때문에 각각의 달마다 일수를 누적을 해주어서 7일로 나누어주면 해당하는 요일이 출력이 된다.

class Solution {
    public String solution(int a, int b) {
String day[]= {"SUN", "MON", "TUE", "WED","THU","FRI","SAT"};
		
		int temp=4;
		String answer="";
		
		if(a==1) {
			temp+=0;
		}else if(a==2) {
			temp+=31;
		}else if(a==3) {
			temp+=60;
		}else if(a==4) {
			temp+=91;
		}else if(a==5) {
			temp+=121;
		}else if(a==6) {
			temp+=152;
		}else if(a==7) {
			temp+=182;
		}else if(a==8) {
			temp+=213;
		}else if(a==9) {
			temp+=244;
		}else if(a==10) {
			temp+=274;
		}else if(a==11) {
			temp+=305;
		}else if(a==12) {
			temp+=335;
		}
		temp+=b;
		answer=day[temp%7];
        return answer;
    }
}
728x90
Comments