No Rules Rules

2007년 (feat. 백준, 1924번) 본문

생활/코테

2007년 (feat. 백준, 1924번)

개발하는 완두콩 2023. 1. 25. 15:31
728x90
반응형

2007년
https://www.acmicpc.net/problem/1924

 

1924번: 2007년

첫째 줄에 빈 칸을 사이에 두고 x(1 ≤ x ≤ 12)와 y(1 ≤ y ≤ 31)이 주어진다. 참고로 2007년에는 1, 3, 5, 7, 8, 10, 12월은 31일까지, 4, 6, 9, 11월은 30일까지, 2월은 28일까지 있다.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    register int m, d, days[]{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    string ans[]{"MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"};
    cin >> m >> d;
    for(register int t = 0; t < m - 1; ++t)
        d += days[t];
    cout << ans[(d - 1) % 7];
    return 0;
}
// *&)*@*

 

반응형

 

조건에 따라 입력된 날짜의 요일을 계산하는 문제입니다.

728x90
반응형

'생활 > 코테' 카테고리의 다른 글

비밀편지 (feat. 백준, 2596번)  (0) 2023.01.26
A+B - 6 (feat. 백준, 10953번)  (0) 2023.01.25
홀수 (feat. 백준, 2576번)  (0) 2023.01.25
특식 배부 (feat. 백준, 27110번)  (0) 2023.01.12
근손실 (feat. 백준, 18429번)  (0) 2023.01.06
Comments