結果

問題 No.179 塗り分け
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-19 16:14:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,339 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 78,244 KB
実行使用メモリ 56,984 KB
最終ジャッジ日時 2024-10-02 14:24:47
合計ジャッジ時間 11,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,956 KB
testcase_01 AC 131 ms
54,092 KB
testcase_02 AC 132 ms
54,216 KB
testcase_03 AC 133 ms
53,764 KB
testcase_04 AC 132 ms
53,712 KB
testcase_05 AC 166 ms
56,312 KB
testcase_06 AC 134 ms
53,988 KB
testcase_07 AC 183 ms
56,564 KB
testcase_08 AC 176 ms
56,692 KB
testcase_09 WA -
testcase_10 AC 138 ms
53,780 KB
testcase_11 AC 138 ms
53,804 KB
testcase_12 AC 206 ms
56,600 KB
testcase_13 AC 133 ms
54,072 KB
testcase_14 AC 136 ms
54,040 KB
testcase_15 AC 133 ms
53,876 KB
testcase_16 AC 132 ms
53,848 KB
testcase_17 AC 130 ms
54,036 KB
testcase_18 AC 167 ms
54,028 KB
testcase_19 AC 168 ms
54,288 KB
testcase_20 AC 183 ms
56,608 KB
testcase_21 AC 179 ms
56,720 KB
testcase_22 AC 186 ms
56,684 KB
testcase_23 AC 137 ms
53,952 KB
testcase_24 AC 180 ms
56,828 KB
testcase_25 AC 142 ms
53,984 KB
testcase_26 WA -
testcase_27 AC 199 ms
56,604 KB
testcase_28 WA -
testcase_29 AC 202 ms
56,856 KB
testcase_30 WA -
testcase_31 AC 190 ms
56,748 KB
testcase_32 AC 180 ms
56,952 KB
testcase_33 AC 197 ms
56,784 KB
testcase_34 WA -
testcase_35 AC 199 ms
56,984 KB
testcase_36 AC 129 ms
53,884 KB
testcase_37 AC 130 ms
53,928 KB
testcase_38 AC 131 ms
53,876 KB
testcase_39 AC 130 ms
54,112 KB
testcase_40 AC 116 ms
52,908 KB
testcase_41 AC 132 ms
53,876 KB
testcase_42 AC 132 ms
53,852 KB
testcase_43 AC 159 ms
54,268 KB
testcase_44 AC 164 ms
56,784 KB
testcase_45 AC 133 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Point;
import java.io.FileInputStream;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	
	static int h, w;
	static int[][] map;
	static int count;
	
	static void start()
	{
		for(int dy = 0;dy < h;dy++)
			for(int dx = 0;dx < w;dx++)
			{
				if(dx == 0 && dy == 0) continue;
				
				int[][] mapp = new int[h][w];
				int cc = 0;
				for(int y = 0;y < h;y++)
					for(int x= 0;x < w;x++)
						mapp[y][x] = 0;
				
				for(int y = 0;y < (h-dy);y++)
					for(int x = 0;x < (w-dx);x++)
					{
						if(mapp[y][x] == 1) continue;
						if(map[y][x] == 0) continue;
						if(map[y+dy][x+dx] == 0) continue;
						
						mapp[y][x] = 1;
						mapp[y+dy][x+dx] = 1;
						cc += 2;
						if(cc == count)
						{
							System.out.println("YES");
							return;
						}
					}
			}
		
		System.out.println("NO");
	}
	
	public static void main(String[] args)
	{
		Scanner sca = new Scanner(System.in);
		
		while(true)
		{
			h = sca.nextInt();
			w = sca.nextInt();
			
			map = new int[h][w];
			count = 0;
			for(int y = 0;y < h;y++)
			{
				String str = sca.next();
				for(int x = 0;x < w;x++)
				{
					if(str.charAt(x) == '#')
					{
						map[y][x] = 1;
						count++;
					}
					else
					{
						map[y][x] = 0;
					}
				}
			}
			
			start();
			break;
		}
	}
}
0