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
- java
- Class
- bit manipulation
- Binary Search
- simulation
- Math
- Method
- Tree
- hash table
- array
- database
- Binary Tree
- 자바
- sorting
- greedy
- dynamic programming
- SQL
- geometry
- 코딩테스트
- two pointers
- Number Theory
- Data Structure
- Counting
- 파이썬
- 구현
- Matrix
- 코테
- implement
- Stack
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 수열과 구간 쿼리 4 본문
1. Input, Output, Example
queries의 원소는 각각 하나의 query를 나타내며, [s, e, k] 꼴이다. 각 query마다 순서대로 s ≤ i ≤ e인 모든 i에 대해 i가 k의 배수이면 arr[i]에 1을 더한다.
- 위 규칙에 따라 queries를 처리한 이후의 arr를 반환
2. Constraint
1) 1 ≤ arr의 길이 ≤ 1,000
2) 0 ≤ arr의 원소 ≤ 1,000,000
3) 1 ≤ queries의 길이 ≤ 1,000
4) 0 ≤ s ≤ e < arr의 길이
5) 0 ≤ k ≤ 5
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int[] solution(int[] arr, int[][] queries) {
for(int i=0 ; i<queries.length ; i++)
for(int j=queries[i][0] ; j<=queries[i][1] ; j++)
if(j%queries[i][2]==0)
arr[j]++;
return arr;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 특정 문자열로 끝나는 가장 긴 부분 문자열 찾기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 커피 심부름 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 날짜 비교하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 문자열 묶기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 수열과 구간 쿼리 2 (0) | 2023.05.01 |