結果

問題 No.179 塗り分け
ユーザー YamaKasaYamaKasa
提出日時 2018-07-26 21:06:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 3,000 ms
コード長 1,235 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-07-23 14:50:25
合計ジャッジ時間 10,951 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,196 KB
testcase_01 AC 126 ms
54,088 KB
testcase_02 AC 116 ms
53,132 KB
testcase_03 AC 127 ms
54,068 KB
testcase_04 AC 131 ms
54,088 KB
testcase_05 AC 171 ms
54,096 KB
testcase_06 AC 159 ms
53,872 KB
testcase_07 AC 267 ms
53,604 KB
testcase_08 AC 154 ms
53,912 KB
testcase_09 AC 170 ms
54,292 KB
testcase_10 AC 177 ms
54,292 KB
testcase_11 AC 164 ms
54,232 KB
testcase_12 AC 173 ms
54,372 KB
testcase_13 AC 118 ms
52,872 KB
testcase_14 AC 136 ms
53,992 KB
testcase_15 AC 125 ms
53,732 KB
testcase_16 AC 131 ms
53,988 KB
testcase_17 AC 119 ms
53,308 KB
testcase_18 AC 176 ms
54,348 KB
testcase_19 AC 169 ms
54,480 KB
testcase_20 AC 167 ms
54,304 KB
testcase_21 AC 174 ms
54,108 KB
testcase_22 AC 212 ms
54,112 KB
testcase_23 AC 169 ms
54,544 KB
testcase_24 AC 211 ms
54,396 KB
testcase_25 AC 189 ms
54,540 KB
testcase_26 AC 172 ms
54,200 KB
testcase_27 AC 167 ms
53,852 KB
testcase_28 AC 162 ms
54,588 KB
testcase_29 AC 171 ms
53,984 KB
testcase_30 AC 169 ms
54,392 KB
testcase_31 AC 168 ms
54,080 KB
testcase_32 AC 169 ms
54,396 KB
testcase_33 AC 165 ms
54,444 KB
testcase_34 AC 185 ms
54,548 KB
testcase_35 AC 162 ms
53,988 KB
testcase_36 AC 128 ms
53,968 KB
testcase_37 AC 126 ms
53,816 KB
testcase_38 AC 127 ms
53,848 KB
testcase_39 AC 129 ms
54,072 KB
testcase_40 AC 115 ms
52,972 KB
testcase_41 AC 124 ms
54,116 KB
testcase_42 AC 125 ms
54,044 KB
testcase_43 AC 136 ms
54,116 KB
testcase_44 AC 176 ms
54,020 KB
testcase_45 AC 132 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int H = scan.nextInt();
		int W = scan.nextInt();
		char c[][] = new char[H][W];
		for(int i = 0; i < H; i++) {
			String s = scan.next();
			for(int j = 0; j < W; j++) {
				c[i][j] = s.charAt(j);
			}
		}
		scan.close();
		boolean [][]s = new boolean[H][W];
		boolean flag = false;
		for(int dy = -H; dy <= H; dy++) {
			for(int dx = -W; dx <= W; dx++) {
				if(dy == 0 && dx == 0) {
					continue;
				}
				for(int i = 0; i < H; i++) {
					for(int j = 0; j < W; j++) {
						s[i][j] =false;
					}
				}

				for(int k = 0; k < (H - 1) * W + W; k++) {
					int y = k / W;
					int x = k % W;
						if(c[y][x] == '#' && s[y][x] == false) {
							s[y][x] = true;
							if(y + dy < 0 || y + dy >= H || x + dx < 0 || x + dx >= W) {
								flag = false;
								break;
							}

							if(c[y + dy][x + dx] == '#' && s[y + dy][x + dx] == false) {
								s[y + dy][x + dx] = true;
								flag = true;
							}else {
								flag = false;
								break;
							}
						}
					}
					if(flag) {
						System.out.println("YES");
						System.exit(0);
					}
				}

			}
		System.out.println("NO");
	}
}
0