結果

問題 No.179 塗り分け
ユーザー tsunabittsunabit
提出日時 2020-03-10 21:16:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 3,000 ms
コード長 1,268 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 77,468 KB
実行使用メモリ 54,636 KB
最終ジャッジ日時 2024-07-23 15:12:40
合計ジャッジ時間 12,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,056 KB
testcase_01 AC 131 ms
53,756 KB
testcase_02 AC 136 ms
54,196 KB
testcase_03 AC 132 ms
54,436 KB
testcase_04 AC 137 ms
54,496 KB
testcase_05 AC 178 ms
53,984 KB
testcase_06 AC 156 ms
54,092 KB
testcase_07 AC 270 ms
54,212 KB
testcase_08 AC 155 ms
54,188 KB
testcase_09 AC 176 ms
54,248 KB
testcase_10 AC 182 ms
54,332 KB
testcase_11 AC 169 ms
54,324 KB
testcase_12 AC 184 ms
54,040 KB
testcase_13 AC 127 ms
54,012 KB
testcase_14 AC 134 ms
54,132 KB
testcase_15 AC 132 ms
54,520 KB
testcase_16 AC 135 ms
54,160 KB
testcase_17 AC 130 ms
54,040 KB
testcase_18 AC 171 ms
54,240 KB
testcase_19 AC 166 ms
54,464 KB
testcase_20 AC 171 ms
54,376 KB
testcase_21 AC 177 ms
54,288 KB
testcase_22 AC 206 ms
54,636 KB
testcase_23 AC 172 ms
54,220 KB
testcase_24 AC 178 ms
54,016 KB
testcase_25 AC 193 ms
54,528 KB
testcase_26 AC 175 ms
54,556 KB
testcase_27 AC 169 ms
54,136 KB
testcase_28 AC 172 ms
54,228 KB
testcase_29 AC 168 ms
54,328 KB
testcase_30 AC 174 ms
54,332 KB
testcase_31 AC 169 ms
54,196 KB
testcase_32 AC 170 ms
54,172 KB
testcase_33 AC 171 ms
54,240 KB
testcase_34 AC 170 ms
54,352 KB
testcase_35 AC 171 ms
54,140 KB
testcase_36 AC 132 ms
54,028 KB
testcase_37 AC 130 ms
54,260 KB
testcase_38 AC 129 ms
54,252 KB
testcase_39 AC 131 ms
54,488 KB
testcase_40 AC 131 ms
54,056 KB
testcase_41 AC 128 ms
54,112 KB
testcase_42 AC 127 ms
54,144 KB
testcase_43 AC 161 ms
54,004 KB
testcase_44 AC 183 ms
54,136 KB
testcase_45 AC 135 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No179 {
	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