Post

Programmers_2016

프로그래머스 - 2016 문제 입니다.

1. 문제

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


2. 분류 및 난이도

Programmers 문제입니다.
level 1 ~ 2의 문제입니다.


3. 생각한 것들(문제 접근 방법)

  • 월, 일이 주어졌을 때 요일을 예측합니다.
  • 조심해야할 점은 7,8월이 31일까지라는 점 윤년이라는 점이 있습니다.

4. 접근 방법을 적용한 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <string>
#include <vector>
#include <string>
#include <iostream>
using namespace std;

string solution(int a, int b) {
    int month[12] = {31,29,31,30,31,30,31,31,30,31,30,31};
    string day[7] = {"FRI","SAT","SUN","MON","TUE","WED","THU"};
    
    int totalday = 0;
    for(int i = 0; i<(a-1);++i)
        totalday+=month[i];
    totalday+=b;
    return day[(totalday-1)%7];
}

5. 결과

필요시.

This post is licensed under CC BY 4.0 by the author.