https://www.acmicpc.net/problem/2563
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int x , y, width=0 ;
int[][] arr = new int[100][100];
int n = sc.nextInt();
for( int i = 0 ; i < n ; i++ ){
x = sc.nextInt();
y = sc.nextInt();
for (int j = x ; j < x+10 ; j++){
for(int k = y ; k < y+10 ; k++){
if( arr[j][k] != 1 ){
arr[j][k] = 1;
width++;
}
}
}
}
System.out.println(width);
}
}
'프로그래밍언어 > 알고리즘' 카테고리의 다른 글
백준 2903 중앙 이동 알고리즘_JAVA (0) | 2023.10.15 |
---|---|
백준 2720 세탁소 사장 동혁_JAVA (0) | 2023.10.11 |
백준 10798 세로읽기_JAVA (2) | 2023.10.08 |
백준 2566 최댓값_JAVA (0) | 2023.09.19 |
백준 2738 행렬 덧셈_JAVA (0) | 2023.09.19 |