結果

問題 No.179 塗り分け
ユーザー kenkooookenkoooo
提出日時 2015-04-18 00:49:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,153 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-10-02 14:12:42
合計ジャッジ時間 9,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 120 ms
41,028 KB
testcase_02 AC 127 ms
41,228 KB
testcase_03 AC 124 ms
41,100 KB
testcase_04 WA -
testcase_05 AC 131 ms
41,036 KB
testcase_06 AC 129 ms
41,012 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 132 ms
41,308 KB
testcase_11 AC 132 ms
41,288 KB
testcase_12 AC 163 ms
41,388 KB
testcase_13 AC 128 ms
41,412 KB
testcase_14 AC 127 ms
41,332 KB
testcase_15 AC 126 ms
41,260 KB
testcase_16 WA -
testcase_17 AC 122 ms
41,128 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 130 ms
41,064 KB
testcase_21 AC 129 ms
41,200 KB
testcase_22 AC 162 ms
41,472 KB
testcase_23 AC 130 ms
41,208 KB
testcase_24 AC 149 ms
41,408 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 162 ms
41,408 KB
testcase_28 WA -
testcase_29 AC 150 ms
41,460 KB
testcase_30 WA -
testcase_31 AC 162 ms
41,224 KB
testcase_32 WA -
testcase_33 AC 163 ms
41,228 KB
testcase_34 WA -
testcase_35 AC 157 ms
41,276 KB
testcase_36 AC 123 ms
41,240 KB
testcase_37 AC 123 ms
41,288 KB
testcase_38 AC 124 ms
41,104 KB
testcase_39 AC 110 ms
40,208 KB
testcase_40 AC 125 ms
41,352 KB
testcase_41 AC 125 ms
41,068 KB
testcase_42 AC 127 ms
41,032 KB
testcase_43 AC 127 ms
41,080 KB
testcase_44 AC 141 ms
41,276 KB
testcase_45 AC 121 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int H = sc.nextInt();
		int W = sc.nextInt();
		char[][] map = new char[H][];
		for (int i = 0; i < map.length; i++) {
			map[i] = sc.next().toCharArray();
		}

		int cnt = 0;
		for (int i = 0; i < map.length; i++) {
			for (int j = 0; j < map[i].length; j++) {
				if (map[i][j] == '#') {
					cnt++;
				}
			}
		}
		if (cnt % 2 == 1) {
			System.out.println("NO");
			return;
		}

		for (int x = 0; x < H - 1; x++) {
			for (int y = 0; y < W - 1; y++) {
				if (x == 0 && y == 0) {
					continue;
				}
				if (check(x, y, map)) {
					System.out.println("YES");
					return;
				}
			}
		}
		System.out.println("NO");

	}

	static boolean check(int x, int y, char[][] map) {
		for (int i = 0; i < map.length; i++) {
			for (int j = 0; j < map[i].length; j++) {
				int h = i + x;
				int w = j + y;
				if (map[i][j] == '#') {
					if (h >= map.length || w >= map[i].length || map[h][w] != '#') {
						return false;
					}
					map[i][j] = '.';
					map[h][w] = '.';
				}
			}
		}
		return true;
	}
}
0