#include <string>
#include <vector>
#include <iostream>
using namespace std;
string solution(int a, int b) {
string answer = "";
int value = 0;
vector<int>month{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
vector<string>date {"FRI", "SAT","SUN", "MON", "TUE", "WED", "THU"};
for(int i=0; i <a-1; i++){
value = (value + month[i]% 7) % 7;
}
value =(value+ b % 7 -1)%7;
answer = date[value];
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 같은 숫자는 싫어 (0) | 2019.07.22 |
---|---|
[프로그래머스] 가운데 글자 가져오기 (0) | 2019.07.22 |
[프로그래머스] K번째 수 (0) | 2019.07.22 |
[프로그래머스] 모의고사 (0) | 2019.07.22 |
[프로그래머스] 폰켓몬 (0) | 2019.07.22 |