Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨 1] 2016년 본문
반응형
#include <string>
#include <vector>
using namespace std;
string week[] = { " ","FRI","SAT","SUN","MON","TUE","WED","THU"," " };
int arr[] = { 0,31,29,31,30,31,30,31,31,30,31,30,31,0 };
string solution(int a, int b) {
string answer = "";
int count = 1;
for (int month = 1; month <= 12; ++month)
{
for (int day = 1; day <= arr[month]; ++day)
{
if (count >= 8)
count = 1;
answer = week[count];
if (month == a && day == b)
return answer;
++count;
}
}
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨 1] 비밀지도 - 비트연산 (0) | 2021.09.12 |
---|---|
[레벨 1] 부족한 금액 계산하기 (0) | 2021.09.09 |
[레벨1] 내적 (0) | 2021.09.08 |
[레벨1] 음양 더하기 (0) | 2021.09.08 |
[레벨1] 약수의 개수와 덧셈 (0) | 2021.09.07 |
Comments