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
- Math
- Matrix
- Number Theory
- geometry
- Class
- 구현
- simulation
- 자바
- two pointers
- Binary Tree
- hash table
- database
- bit manipulation
- Binary Search
- java
- Tree
- 코테
- array
- Method
- sorting
- 코딩테스트
- Data Structure
- implement
- string
- Stack
- dynamic programming
- greedy
- SQL
- 파이썬
- Counting
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 연속된 수의 합 본문
1. Input
1) 정수 num
2) 정수 total
2. Output
1) 연속된 수 num개를 더한 값이 total이 될 때, 정수 배열을 오름차순으로 담아 반환
3. Constraint
1) 1 ≤ num ≤ 100
2) 0 ≤ total ≤ 1000
3) num개의 연속된 수를 더하여 total이 될 수 없는 테스트 케이스는 없다.
4. Example
Input: num=3, total=12-> Output: {3,4,5}
Input: num=4, total=14-> Output: {2,3,4,5}
5. Code
1) 첫 코드(2022/10/25)
int[] answer = new int[num];
if(num%2==1){
for(int i=0 ; i<num ; i++)
answer[i] = total/num - num/2 + i;
}
else{
for(int i=0 ; i<num ; i++)
answer[i] = total/num - num/2 + 1 + i;
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 치킨 쿠폰 (0) | 2022.11.09 |
---|---|
[프로그래머스/Lv.0] 안전지대 (0) | 2022.11.09 |
[프로그래머스/Lv.0] 다항식 더하기 (0) | 2022.11.02 |
[프로그래머스/Lv.0] 최댓값 만들기 (2) (0) | 2022.11.02 |
[프로그래머스/Lv.0] 캐릭터의 좌표 (0) | 2022.11.02 |