結果

問題 No.179 塗り分け
ユーザー YamaKasaYamaKasa
提出日時 2018-07-26 19:55:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,222 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 43,032 KB
最終ジャッジ日時 2024-07-01 03:25:03
合計ジャッジ時間 11,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,572 KB
testcase_01 WA -
testcase_02 AC 136 ms
41,268 KB
testcase_03 WA -
testcase_04 AC 134 ms
41,608 KB
testcase_05 WA -
testcase_06 AC 143 ms
41,624 KB
testcase_07 AC 199 ms
41,396 KB
testcase_08 AC 212 ms
42,092 KB
testcase_09 AC 210 ms
41,804 KB
testcase_10 AC 245 ms
42,392 KB
testcase_11 AC 240 ms
42,908 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 136 ms
41,516 KB
testcase_16 AC 143 ms
41,632 KB
testcase_17 AC 141 ms
41,444 KB
testcase_18 AC 239 ms
42,696 KB
testcase_19 AC 167 ms
41,788 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 226 ms
42,660 KB
testcase_24 WA -
testcase_25 AC 190 ms
42,032 KB
testcase_26 AC 219 ms
41,660 KB
testcase_27 WA -
testcase_28 AC 211 ms
41,508 KB
testcase_29 WA -
testcase_30 AC 209 ms
42,928 KB
testcase_31 WA -
testcase_32 AC 209 ms
42,556 KB
testcase_33 WA -
testcase_34 AC 208 ms
43,032 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 131 ms
41,196 KB
testcase_40 AC 131 ms
41,420 KB
testcase_41 AC 129 ms
40,900 KB
testcase_42 AC 130 ms
40,992 KB
testcase_43 WA -
testcase_44 AC 197 ms
42,412 KB
testcase_45 AC 139 ms
41,400 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;
								flag = true;
							}else {
								flag = false;
								break;
							}
						}
					}
					if(flag) {
						System.out.println("YES");
						System.exit(0);
					}
				}

			}
		}

		System.out.println("NO");


	}
}
0