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
- 파이썬
- 구현
- greedy
- hash table
- 코딩테스트
- database
- Binary Tree
- java
- geometry
- Counting
- 자바
- array
- dynamic programming
- 코테
- Math
- Tree
- Method
- Data Structure
- Stack
- string
- simulation
- implement
- sorting
- Binary Search
- two pointers
- SQL
- Number Theory
- Matrix
- Class
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1716. Calculate Money in Leetcode Bank 본문
1. Input
1) 정수 n
2. Output
1) 다음 규칙에 따라 예금했을 때 n일에 은행 계좌에 있는 예금액을 반환
// 규칙
- 월요일에는 1을 예금한다.
- 매일 예금액이 1씩 늘어난다.
- 다음 월요일에는 이전 월요일보다 1 더 많이 예금한다.
3. Constraint
1) 1 <= n <= 1000
4. Example
Input: n = 10 -> Output: 37
설명:
- 월요일 ~ 일요일(7일)까지 1+2+3+4+5+6+7=28만큼 예금한다.
- 그 다음주 월요일 ~ 수요일(3일)까지는 2+3+4=9만큼 예금한다.
- 따라서 10일째의 예금 총액은 28+9=37이다.
5. Code
1) 첫 코드(2022/07/05)
int sum = 0;
int mon = 1;
while(n>0){
if(n-7>=0){
sum += (6+2*mon)*7/2;
mon++; n -= 7;
}else{
for(int i=0 ; i<n ; i++)
sum += mon+i;
n=0;
}
}
return sum;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1725. Number Of Rectangles That Can Form The Largest Square (0) | 2023.01.02 |
---|---|
[LeetCode/Easy] 1720. Decode XORed Array (0) | 2023.01.02 |
[LeetCode/Easy] 976. Largest Perimeter Triangle (0) | 2023.01.02 |
[LeetCode/Easy] 1704. Determine if String Halves Are Alike (0) | 2023.01.02 |
[LeetCode/Easy] 1688. Count of Matches in Tournament (0) | 2023.01.02 |