728x90
백준 2563. 색종이
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[][] p = new int[101][101];
int t = sc.nextInt();
int cnt = 0;
for(int i=0; i<t; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
for(int k=x; k<x+10; k++) {
for(int m=y; m<y+10; m++) {
if(p[k][m] == 0) {
p[k][m] = 1;
cnt++;
}
}
}
}
System.out.println(cnt);
}
}
728x90
'[알고리즘] > 알고리즘' 카테고리의 다른 글
[알고리즘] 백준 17478. 재귀함수가 뭔가요? (0) | 2022.02.13 |
---|---|
[알고리즘] 백준 10974. 모든 순열 (0) | 2022.02.13 |
[알고리즘] 백준6603. 로또 (0) | 2022.02.13 |
[알고리즘] 백준 1009번. 분산처리 (0) | 2022.02.10 |
[알고리즘] (SW)1210. Ladder1 (0) | 2022.02.10 |