結果

問題 No.179 塗り分け
ユーザー horiesinitihoriesiniti
提出日時 2018-03-30 20:12:30
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-26 00:45:15
合計ジャッジ時間 38,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 82 ms
12,416 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 84 ms
12,288 KB
testcase_04 AC 82 ms
12,288 KB
testcase_05 AC 270 ms
13,056 KB
testcase_06 AC 83 ms
12,416 KB
testcase_07 WA -
testcase_08 AC 1,958 ms
12,288 KB
testcase_09 WA -
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 85 ms
12,160 KB
testcase_12 AC 1,779 ms
12,416 KB
testcase_13 AC 89 ms
12,288 KB
testcase_14 AC 87 ms
12,160 KB
testcase_15 AC 83 ms
12,160 KB
testcase_16 AC 82 ms
12,288 KB
testcase_17 AC 82 ms
12,288 KB
testcase_18 AC 127 ms
12,544 KB
testcase_19 AC 128 ms
12,544 KB
testcase_20 AC 1,896 ms
12,288 KB
testcase_21 AC 2,025 ms
12,416 KB
testcase_22 AC 2,251 ms
12,416 KB
testcase_23 AC 86 ms
12,160 KB
testcase_24 AC 2,001 ms
12,416 KB
testcase_25 AC 102 ms
12,544 KB
testcase_26 WA -
testcase_27 AC 2,007 ms
12,288 KB
testcase_28 WA -
testcase_29 AC 2,141 ms
12,544 KB
testcase_30 WA -
testcase_31 AC 2,096 ms
12,288 KB
testcase_32 AC 611 ms
12,288 KB
testcase_33 AC 2,052 ms
12,544 KB
testcase_34 WA -
testcase_35 AC 2,063 ms
12,544 KB
testcase_36 AC 84 ms
12,288 KB
testcase_37 AC 83 ms
12,160 KB
testcase_38 AC 82 ms
12,160 KB
testcase_39 AC 82 ms
12,288 KB
testcase_40 AC 81 ms
12,160 KB
testcase_41 AC 81 ms
12,288 KB
testcase_42 AC 83 ms
12,416 KB
testcase_43 AC 117 ms
13,568 KB
testcase_44 AC 309 ms
13,312 KB
testcase_45 AC 93 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(m,dx,dy,h,w)
	i=0
	arr=Array.new(h*2+3).map{Array.new(w*2+3,0)}
	c=0
	m.each{|e|
		j=0
		e.chars{|e2|
			if e2=="#"
				arr[i][j]=1
				c+=1
			else
				arr[i][j]=0
			end
			j+=1
		}
		i+=1
	}
	
	h.times{|y|
		w.times{|x|
			y1=y+dy
			x1=x+dx
			if arr[y][x]==1
				arr[y1][x1]-=1
				c-=2
			end
			return false if arr[y1][x1]<0
		}
	}
	return c==0
end

h,w=gets.split.map{|e| e.to_i}
m=[]
h.times{
	m<<gets.chomp
}



ok=false
h.times{|dy|
	w.times{|dx|
		if dy+dx!=0
			ok=ok||f(m,dx,dy,h,w)
		end
	}
}
if ok==true
	puts "YES"
else
	puts "NO"
end
0