結果

問題 No.179 塗り分け
ユーザー YamaKasaYamaKasa
提出日時 2018-07-26 18:41:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,182 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 76,756 KB
実行使用メモリ 42,896 KB
最終ジャッジ日時 2024-07-01 03:22:49
合計ジャッジ時間 14,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 129 ms
41,364 KB
testcase_02 WA -
testcase_03 AC 134 ms
41,204 KB
testcase_04 WA -
testcase_05 AC 193 ms
42,400 KB
testcase_06 WA -
testcase_07 AC 190 ms
41,488 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 303 ms
41,876 KB
testcase_13 AC 116 ms
40,096 KB
testcase_14 AC 138 ms
41,148 KB
testcase_15 AC 127 ms
41,404 KB
testcase_16 WA -
testcase_17 AC 132 ms
41,516 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 269 ms
42,588 KB
testcase_21 AC 345 ms
42,712 KB
testcase_22 AC 343 ms
42,808 KB
testcase_23 WA -
testcase_24 AC 382 ms
42,896 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 328 ms
42,680 KB
testcase_28 WA -
testcase_29 AC 315 ms
42,800 KB
testcase_30 WA -
testcase_31 AC 271 ms
42,156 KB
testcase_32 WA -
testcase_33 AC 306 ms
42,504 KB
testcase_34 WA -
testcase_35 AC 363 ms
42,580 KB
testcase_36 AC 131 ms
41,368 KB
testcase_37 AC 135 ms
41,400 KB
testcase_38 AC 134 ms
41,244 KB
testcase_39 AC 133 ms
41,628 KB
testcase_40 AC 132 ms
41,284 KB
testcase_41 AC 133 ms
41,236 KB
testcase_42 AC 132 ms
41,148 KB
testcase_43 AC 161 ms
41,364 KB
testcase_44 AC 198 ms
42,128 KB
testcase_45 AC 139 ms
41,500 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 y = 0; y < H; y++) {
					for(int x = 0; x < W; x++) {
						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;
							}else {
								flag = false;
								break;
							}
						}

					}
				}
			}
		}
		if(flag) {
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}

	}
}
0