백준10810: 공 넣기
문제
https://www.acmicpc.net/problem/10810
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
int[] basket = new int[n];
for (int a = 0; a < m; a++) {
int i = sc.nextInt();
int j = sc.nextInt();
int k = sc.nextInt();
for (int b = i; b <= j; b++) {
basket[b - 1] = k;
}
}
for (int num : basket) {
System.out.print(num + " ");
}
}
}
댓글남기기