結果

問題 No.179 塗り分け
ユーザー TawaraTawara
提出日時 2015-08-26 17:21:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 939 ms / 3,000 ms
コード長 630 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-23 14:32:09
合計ジャッジ時間 10,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 11 ms
6,016 KB
testcase_04 AC 10 ms
6,016 KB
testcase_05 AC 75 ms
6,144 KB
testcase_06 AC 11 ms
6,016 KB
testcase_07 AC 11 ms
6,016 KB
testcase_08 AC 630 ms
6,272 KB
testcase_09 AC 632 ms
6,400 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 11 ms
6,144 KB
testcase_12 AC 577 ms
6,400 KB
testcase_13 AC 12 ms
6,144 KB
testcase_14 AC 11 ms
6,144 KB
testcase_15 AC 11 ms
6,144 KB
testcase_16 AC 10 ms
6,272 KB
testcase_17 AC 10 ms
6,144 KB
testcase_18 AC 24 ms
6,272 KB
testcase_19 AC 23 ms
6,400 KB
testcase_20 AC 597 ms
6,272 KB
testcase_21 AC 715 ms
6,400 KB
testcase_22 AC 939 ms
6,400 KB
testcase_23 AC 12 ms
6,144 KB
testcase_24 AC 648 ms
6,144 KB
testcase_25 AC 14 ms
6,144 KB
testcase_26 AC 99 ms
6,400 KB
testcase_27 AC 637 ms
6,272 KB
testcase_28 AC 35 ms
6,272 KB
testcase_29 AC 627 ms
6,400 KB
testcase_30 AC 261 ms
6,400 KB
testcase_31 AC 638 ms
6,272 KB
testcase_32 AC 179 ms
6,400 KB
testcase_33 AC 634 ms
6,400 KB
testcase_34 AC 127 ms
6,400 KB
testcase_35 AC 631 ms
6,272 KB
testcase_36 AC 10 ms
6,144 KB
testcase_37 AC 11 ms
6,272 KB
testcase_38 AC 10 ms
6,272 KB
testcase_39 AC 11 ms
6,144 KB
testcase_40 AC 11 ms
6,272 KB
testcase_41 AC 10 ms
6,272 KB
testcase_42 AC 10 ms
6,272 KB
testcase_43 AC 23 ms
6,144 KB
testcase_44 AC 83 ms
6,016 KB
testcase_45 AC 13 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(di,dj):
	flag = [[True for i in xrange(W)] for i in xrange(H)]
	for i in xrange(H):
		for j in xrange(W):
			if M[i][j] == "#" and flag[i][j]:
				ni = i + di
				nj = j + dj
				if 0 <= ni < H and 0 <= nj < W and M[ni][nj] == "#":
					flag[ni][nj] = False
				else:
					return False
	return True
H,W = map(int,raw_input().split(" "))
M = [list(raw_input()) for i in xrange(H)]
if sum(1 for i in xrange(H*W) if M[i/W][i%W] == "#") == 0:
	print "NO"
	quit()
for j in xrange(1,W):
	if check(0,j):
		print "YES"
		quit()
for i in xrange(1,H):
	for j in xrange(-W+1,W):
		if check(i,j):
			print "YES"
			quit()
print "NO"
0