Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- hash table
- java
- Counting
- dynamic programming
- Data Structure
- SQL
- simulation
- 코테
- array
- 구현
- 코딩테스트
- Binary Search
- 자바
- bit manipulation
- greedy
- Matrix
- string
- database
- Number Theory
- Math
- Binary Tree
- Tree
- 파이썬
- Class
- Stack
- implement
- Method
- geometry
- two pointers
- sorting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1185. Day of the Week 본문
1. Input
1) int day
2) int month
3) int year
2. Output
1) 주어진 날짜가 어떤 요일인지 출력
- 출력 형식은 {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"} 중 1개로 한다.
3. Constraint
1) 주어지는 날짜는 1971년부터 2100년의 날짜 중 1개이다.
4. Example
Input: day = 31, month = 8, year = 2019 -> Output: "Saturday"
5. Code
1) 첫 코드(2023/04/06)
int[] m_day = {31,28,31,30,31,30,31,31,30,31,30,31};
String[] days = {"Friday", "Saturday", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday"};
// 1971-01-01: Fri
for(int i=0 ; i<month-1 ; i++)
day += m_day[i];
for(int i=1971 ; i<year ; i++){
day += 365;
if(i%4==0){
if(i%100!=0) day++;
else if(i%400==0) day++;
}
}
if(month>2 && year%4==0){
if(year%100!=0) day++;
else if(year%400==0) day++;
}
return days[(day-1)%7];
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 24262. 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2023.04.07 |
---|---|
[백준 온라인 저지] 2869. 달팽이는 올라가고 싶다 (0) | 2023.04.06 |
[LeetCode/Easy] 1189. Maximum Number of Balloons (0) | 2023.04.06 |
[LeetCode/Easy] 1200. Minimum Absolute Difference (0) | 2023.04.06 |
[LeetCode/Easy] 1207. Unique Number of Occurrences (0) | 2023.04.06 |