일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 파이썬
- 스포티파이
- Spotify Api
- MYSQL
- SECS-II
- spotify
- 백준
- CS
- C++
- programmers
- SECS/GEM
- modern c++
- 자바
- Computer Science
- c
- linux
- python
- 프로그래머스
- 회귀
- Spring
- spring boot
- Gem
- Baekjoon
- Spring JPA
- java
- SW Expert Academy
- 회원가입
- regression
- SECS
- SWEA
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12901 2016년 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12901
총 12달이기 때문에 각각의 달마다 일수를 누적을 해주어서 7일로 나누어주면 해당하는 요일이 출력이 된다.
class Solution {
public String solution(int a, int b) {
String day[]= {"SUN", "MON", "TUE", "WED","THU","FRI","SAT"};
int temp=4;
String answer="";
if(a==1) {
temp+=0;
}else if(a==2) {
temp+=31;
}else if(a==3) {
temp+=60;
}else if(a==4) {
temp+=91;
}else if(a==5) {
temp+=121;
}else if(a==6) {
temp+=152;
}else if(a==7) {
temp+=182;
}else if(a==8) {
temp+=213;
}else if(a==9) {
temp+=244;
}else if(a==10) {
temp+=274;
}else if(a==11) {
temp+=305;
}else if(a==12) {
temp+=335;
}
temp+=b;
answer=day[temp%7];
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12903 가운데 글자 가져오기 (0) | 2021.01.07 |
---|---|
[Programmers 프로그래머스] 68935 3진법 뒤집기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 42748 K번째수 (0) | 2021.01.07 |
[Programmers 프로그래머스] 42862 체육복 (0) | 2021.01.07 |
[Programmers 프로그래머스] 42840 모의고사 (0) | 2021.01.07 |
Comments