728x90
반응형
풀이 :
문제 이해만 하면 풀이는 쉬움 -> for문 사용해서 배열 값++ 해주고 출력
[주의: 맨 마지막에 다음 테케로 넘어가야 하므로 줄넘김해줘야 함]
Code
public class Solution6485 {
static int[] arr;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for (int tc = 1; tc <= T; tc++) {
int N = sc.nextInt();
arr = new int[5001];
for (int i = 0; i < N; i++) {
int A = sc.nextInt();
int B = sc.nextInt();
for (int j = A; j < B + 1; j++) {
arr[j]++;
}
}
int P = sc.nextInt();
System.out.print("#" + tc);
for (int i = 0; i < P; i++) {
int C = sc.nextInt();
System.out.print(" " + arr[C]);
}
System.out.println();
}
}
}
728x90
반응형
'SWEA' 카테고리의 다른 글
swea 9229 [D3] 한빈이와 Spot Mart JAVA (0) | 2023.11.29 |
---|---|
swea 6808 [D3] 규영이와 인영이의 카드게임 JAVA (0) | 2023.11.29 |
swea 6190 [D3] 정곤이의 단조 증가하는 수 JAVA (1) | 2023.11.29 |
swea 5948 [D3] 새샘이의 7-3-5 게임 JAVA (0) | 2023.11.29 |
swea 5607 [D3] [Professional] 조합 JAVA (0) | 2023.11.29 |