Recent Posts
Notice
No Rules Rules
2007년 (feat. 백준, 1924번) 본문
728x90
반응형
2007년
https://www.acmicpc.net/problem/1924
// 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