結果

問題 No.179 塗り分け
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-06 21:33:09
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 821 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 79,532 KB
最終ジャッジ日時 2024-07-23 14:30:03
合計ジャッジ時間 16,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,300 KB
testcase_01 AC 76 ms
75,424 KB
testcase_02 AC 87 ms
76,940 KB
testcase_03 AC 76 ms
75,556 KB
testcase_04 AC 92 ms
78,100 KB
testcase_05 AC 171 ms
79,268 KB
testcase_06 AC 130 ms
78,648 KB
testcase_07 AC 321 ms
78,620 KB
testcase_08 AC 334 ms
78,884 KB
testcase_09 AC 332 ms
78,728 KB
testcase_10 AC 408 ms
78,996 KB
testcase_11 AC 364 ms
79,252 KB
testcase_12 AC 704 ms
78,888 KB
testcase_13 AC 88 ms
78,112 KB
testcase_14 AC 85 ms
77,948 KB
testcase_15 AC 75 ms
75,672 KB
testcase_16 AC 75 ms
75,692 KB
testcase_17 AC 75 ms
75,688 KB
testcase_18 AC 378 ms
78,380 KB
testcase_19 AC 374 ms
79,132 KB
testcase_20 AC 620 ms
78,860 KB
testcase_21 AC 405 ms
79,144 KB
testcase_22 AC 471 ms
79,028 KB
testcase_23 AC 341 ms
78,380 KB
testcase_24 AC 389 ms
79,532 KB
testcase_25 AC 241 ms
78,888 KB
testcase_26 AC 318 ms
78,916 KB
testcase_27 AC 595 ms
78,812 KB
testcase_28 AC 424 ms
78,884 KB
testcase_29 AC 776 ms
79,084 KB
testcase_30 AC 565 ms
78,768 KB
testcase_31 AC 821 ms
79,012 KB
testcase_32 AC 523 ms
78,908 KB
testcase_33 AC 758 ms
78,672 KB
testcase_34 AC 550 ms
79,164 KB
testcase_35 AC 820 ms
78,840 KB
testcase_36 AC 74 ms
75,652 KB
testcase_37 AC 75 ms
75,288 KB
testcase_38 AC 77 ms
75,432 KB
testcase_39 AC 74 ms
75,300 KB
testcase_40 AC 84 ms
78,356 KB
testcase_41 AC 74 ms
75,272 KB
testcase_42 AC 83 ms
77,612 KB
testcase_43 AC 126 ms
79,136 KB
testcase_44 AC 191 ms
78,752 KB
testcase_45 AC 114 ms
78,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,raw_input().split())
board=[raw_input() for i in range(H)]

for dx in range(-H+1,H,+1):
    for dy in range(-W+1,W,+1):
        if dx==0 and dy==0:
            continue
        used=[[False for i in range(W)]for j in range(H)]
        ok=True
        cnt=0
        for h in range(H):
            for w in range(W):
                if board[h][w]=='#' and used[h][w]==False:
                    if h+dx<0 or h+dx>=H or w+dy<0 or w+dy>=W:
                        ok=False
                    elif board[h+dx][w+dy]=='.':
                        ok=False
                    else:
                        cnt+=1
                        used[h+dx][w+dy]=True
        if ok and cnt>0:
            print"YES"
            exit()
print "NO"
0