[アルゴリズム]白準-2563(カラー紙)/Java
8138 ワード
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int count = Integer.parseInt(br.readLine());
boolean[][] location = new boolean[101][101];
int x;
int y;
int area = 0;
for ( int i = 0 ; i < count ; i ++) {
StringTokenizer st = new StringTokenizer(br.readLine());
x = Integer.parseInt(st.nextToken());
y = Integer.parseInt(st.nextToken());
for(int X = x ; X < x+10 ; X++) {
for(int Y = y ; Y < y+10 ; Y++) {
if(location[X][Y] == false) {
location[X][Y] = true;
area++;
}
}
}
}
System.out.print(area);
}
}
Reference
この問題について([アルゴリズム]白準-2563(カラー紙)/Java), 我々は、より多くの情報をここで見つけました https://velog.io/@cheal3/알고리즘-백준-2563-색종이-자바テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol