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
- Tree
- dynamic programming
- array
- hash table
- 구현
- Stack
- bit manipulation
- simulation
- sorting
- 파이썬
- Binary Tree
- string
- java
- geometry
- Method
- SQL
- 자바
- database
- Matrix
- greedy
- Number Theory
- Counting
- 코딩테스트
- 코테
- Binary Search
- Math
- two pointers
- Class
- implement
- Data Structure
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1450. Number of Students Doing Homework at a Given Time 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1450. Number of Students Doing Homework at a Given Time
무지맘 2022. 12. 25. 22:061. Input
1) int 배열 startTime
2) int 배열 endTime
3) 정수 queryTime
4) i번째 학생은 [ startTime[i], endTime[i] ]까지 숙제를 했다.
2. Output
1) queryTime때 숙제를 하고 있던 학생의 수
3. Constraint
1) startTime.length == endTime.length
2) 1 <= startTime.length <= 100
3) 1 <= startTime[i] <= endTime[i] <= 1000
4) 1 <= queryTime <= 1000
4. Example
Input: startTime = [1,2,3], endTime = [3,2,7], queryTime = 4 -> Output: 1
설명:
- 0번째 학생: 1시부터 3시까지 숙제 -> 4시에는 하지 않았음
- 1번째 학셍: 2시부터 2시까지 숙제 -> 4시에는 하지 않았음
- 2번째 학생: 3시부터 7시까지 숙제 -> 4시에는 숙제중이었음
- 따라서 1을 반환한다.
5. Code
1) 첫 코드(2022/06/15)
int count = 0;
for(int i=0 ; i<startTime.length ; i++)
if(startTime[i]<=queryTime && queryTime<=endTime[i])
count++;
return count;