본문 바로가기
알고리즘

[알고리즘] c++ cpp 2016년

by keel_im 2020. 10. 21.
반응형

포인트

1. 할 수 있다면 데이터를 직접 넣는 것이 제일 효과적이다. 

🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다. 

#include <string>
#include <vector>

using namespace std;

string solution(int a, int b) {
    string answer = "";
    
    
    vector<string> s = {"FRI", "SAT", "SUN", "MON", "TUE", "WED", "THU"};
      vector<int> vc=  {31, 29, 31, 30, 31, 30,31, 31, 30, 31, 30, 31};
    
    int total = 0;
    
      for(int i =0;i<a-1;i++){
          total += vc[i];
      }
      total += b-1;
      answer = s[total%7];
      return answer;
    
}

 

반응형

'알고리즘' 카테고리의 다른 글

[알고리즘] c++ cpp 가운데 글자 가져오기  (0) 2020.10.21
[알고리즘] c++ cpp 3진법 뒤집기  (0) 2020.10.21
[알고리즘] K번째 수  (0) 2020.10.21
[알고리즘] 체육복  (0) 2020.10.21
[알고리즘] c++ cpp 모의고사  (0) 2020.10.21

댓글